Lines Matching defs:uargs
3433 static int load_module(struct load_info *info, const char __user *uargs,
3537 args = strndup_user(uargs, ~0UL >> 1);
3648 unsigned long, len, const char __user *, uargs)
3657 pr_debug("init_module: umod=%p, len=%lu, uargs=%p\n",
3658 umod, len, uargs);
3667 return load_module(&info, uargs, 0);
3754 static int init_module_from_file(struct file *f, const char __user * uargs, int flags)
3790 return load_module(&info, uargs, flags);
3793 static int idempotent_init_module(struct file *f, const char __user * uargs, int flags)
3802 int ret = init_module_from_file(f, uargs, flags);
3812 SYSCALL_DEFINE3(finit_module, int, fd, const char __user *, uargs, int, flags)
3818 pr_debug("finit_module: fd=%d, uargs=%p, flags=%i\n", fd, uargs, flags);
3828 return idempotent_init_module(fd_file(f), uargs, flags);