Lines Matching defs:arg

169 	if (len && (start > uwq->msg.arg.pagefault.address ||
170 start + len <= uwq->msg.arg.pagefault.address))
251 msg.arg.pagefault.address = (features & UFFD_FEATURE_EXACT_ADDRESS) ?
264 msg.arg.pagefault.flags |= UFFD_PAGEFAULT_FLAG_WRITE;
266 msg.arg.pagefault.flags |= UFFD_PAGEFAULT_FLAG_WP;
268 msg.arg.pagefault.flags |= UFFD_PAGEFAULT_FLAG_MINOR;
270 msg.arg.pagefault.feat.ptid = task_pid_vnr(current);
635 ewq->msg.arg.reserved.reserved1;
746 ewq.msg.arg.reserved.reserved1 = (unsigned long)fctx->new;
802 ewq.msg.arg.remap.from = from;
803 ewq.msg.arg.remap.to = to;
804 ewq.msg.arg.remap.len = len;
827 ewq.msg.arg.remove.start = start;
828 ewq.msg.arg.remove.end = end;
881 ewq.msg.arg.remove.start = ctx->start;
882 ewq.msg.arg.remove.end = ctx->end;
1041 msg->arg.reserved.reserved1 = 0;
1042 msg->arg.fork.ufd = fd;
1121 uwq->msg.arg.reserved.reserved1;
1316 unsigned long arg)
1330 user_uffdio_register = (struct uffdio_register __user *) arg;
1553 unsigned long arg)
1562 const void __user *buf = (void __user *)arg;
1713 unsigned long arg)
1718 const void __user *buf = (void __user *)arg;
1745 unsigned long arg)
1753 user_uffdio_copy = (struct uffdio_copy __user *) arg;
1803 unsigned long arg)
1810 user_uffdio_zeropage = (struct uffdio_zeropage __user *) arg;
1855 unsigned long arg)
1866 user_uffdio_wp = (struct uffdio_writeprotect __user *) arg;
1907 static int userfaultfd_continue(struct userfaultfd_ctx *ctx, unsigned long arg)
1915 user_uffdio_continue = (struct uffdio_continue __user *)arg;
1966 static inline int userfaultfd_poison(struct userfaultfd_ctx *ctx, unsigned long arg)
1973 user_uffdio_poison = (struct uffdio_poison __user *)arg;
2036 unsigned long arg)
2039 void __user *buf = (void __user *)arg;
2089 unsigned long arg)
2099 ret = userfaultfd_api(ctx, arg);
2102 ret = userfaultfd_register(ctx, arg);
2105 ret = userfaultfd_unregister(ctx, arg);
2108 ret = userfaultfd_wake(ctx, arg);
2111 ret = userfaultfd_copy(ctx, arg);
2114 ret = userfaultfd_zeropage(ctx, arg);
2117 ret = userfaultfd_writeprotect(ctx, arg);
2120 ret = userfaultfd_continue(ctx, arg);
2123 ret = userfaultfd_poison(ctx, arg);