Searched defs:gup_flags (Results 1 - 2 of 2) sorted by relevance

/mm/
H A Dmlock.c165 int gup_flags; local
173 gup_flags = FOLL_TOUCH | FOLL_MLOCK;
180 gup_flags |= FOLL_WRITE;
187 gup_flags |= FOLL_FORCE;
189 return __get_user_pages(current, mm, addr, nr_pages, gup_flags,
H A Dmemory.c1600 * @gup_flags: flags modifying pin behaviour
1630 * If @gup_flags & FOLL_WRITE == 0, the page must not be written to. If
1641 * you need some special @gup_flags.
1644 unsigned long start, int nr_pages, unsigned int gup_flags,
1654 VM_BUG_ON(!!pages != !!(gup_flags & FOLL_GET));
1660 vm_flags = (gup_flags & FOLL_WRITE) ?
1662 vm_flags &= (gup_flags & FOLL_FORCE) ?
1678 if (gup_flags & FOLL_WRITE)
1702 if (!(gup_flags & FOLL_DUMP) &&
1724 &start, &nr_pages, i, gup_flags);
1643 __get_user_pages(struct task_struct *tsk, struct mm_struct *mm, unsigned long start, int nr_pages, unsigned int gup_flags, struct page **pages, struct vm_area_struct **vmas, int *nonblocking) argument
[all...]

Completed in 40 milliseconds