Symbol: FOLL_PIN
mm/gup.c
104
if (flags & FOLL_PIN) {
mm/gup.c
1189
if ((gup_flags & (FOLL_PIN | FOLL_LONGTERM)) !=
mm/gup.c
1190
(FOLL_PIN | FOLL_LONGTERM))
mm/gup.c
1368
VM_WARN_ON_ONCE(!!pages != !!(gup_flags & (FOLL_GET | FOLL_PIN)));
mm/gup.c
1371
VM_WARN_ON_ONCE((gup_flags & (FOLL_PIN | FOLL_GET)) ==
mm/gup.c
1372
(FOLL_PIN | FOLL_GET));
mm/gup.c
151
else if (flags & FOLL_PIN) {
mm/gup.c
1675
if (flags & FOLL_PIN)
mm/gup.c
1687
if (pages && !(flags & FOLL_PIN))
mm/gup.c
188
gup_put_folio(page_folio(page), 1, FOLL_PIN);
mm/gup.c
201
gup_put_folio(folio, 1, FOLL_PIN);
mm/gup.c
2338
gup_put_folio(folio, 1, FOLL_PIN);
mm/gup.c
2525
if (WARN_ON_ONCE((gup_flags & (FOLL_PIN | FOLL_GET)) ==
mm/gup.c
2526
(FOLL_PIN | FOLL_GET)))
mm/gup.c
2530
if (WARN_ON_ONCE(!(gup_flags & FOLL_PIN) && (gup_flags & FOLL_LONGTERM)))
mm/gup.c
2534
if (WARN_ON_ONCE((gup_flags & (FOLL_GET | FOLL_PIN)) && !pages))
mm/gup.c
2749
if ((flags & (FOLL_PIN | FOLL_LONGTERM | FOLL_WRITE)) ==
mm/gup.c
2750
(FOLL_PIN | FOLL_LONGTERM | FOLL_WRITE))
mm/gup.c
2890
if ((flags & FOLL_PIN) && arch_make_folio_accessible(folio)) {
mm/gup.c
3140
if (gup_flags & FOLL_PIN) {
mm/gup.c
3164
if (gup_flags & FOLL_PIN) {
mm/gup.c
3184
FOLL_FORCE | FOLL_PIN | FOLL_GET |
mm/gup.c
3189
if (gup_flags & FOLL_PIN)
mm/gup.c
324
gup_put_folio(folio, nr, FOLL_PIN);
mm/gup.c
3313
if (!is_valid_gup_args(pages, NULL, &gup_flags, FOLL_PIN))
mm/gup.c
3350
FOLL_PIN | FOLL_TOUCH | FOLL_REMOTE))
mm/gup.c
3381
if (!is_valid_gup_args(pages, NULL, &gup_flags, FOLL_PIN))
mm/gup.c
3402
FOLL_PIN | FOLL_TOUCH | FOLL_UNLOCKABLE))
mm/gup.c
3495
if (try_grab_folio(folio, 1, FOLL_PIN)) {
mm/gup.c
3555
return try_grab_folio(folio, pins, FOLL_PIN);
mm/gup.c
370
gup_put_folio(folio, nr, FOLL_PIN);
mm/gup.c
388
gup_put_folio(folio, nr, FOLL_PIN);
mm/gup.c
422
gup_put_folio(folio, nr, FOLL_PIN);
mm/gup.c
436
gup_put_folio(folio, npages, FOLL_PIN);
mm/gup.c
468
gup_put_folio(folios[i], j - i, FOLL_PIN);
mm/gup.c
525
if (WARN_ON_ONCE((flags & (FOLL_GET | FOLL_PIN)) == 0))
mm/gup.c
728
VM_WARN_ON_ONCE_PAGE((flags & FOLL_PIN) && PageAnon(page) &&
mm/gup.c
854
VM_WARN_ON_ONCE_PAGE((flags & FOLL_PIN) && PageAnon(page) &&
mm/gup.c
869
if (flags & FOLL_PIN) {
mm/internal.h
1547
#define INTERNAL_GUP_FLAGS (FOLL_TOUCH | FOLL_TRIED | FOLL_REMOTE | FOLL_PIN | \
mm/internal.h
1579
if ((flags & (FOLL_WRITE | FOLL_PIN)) != FOLL_PIN)