Lines Matching refs:argv
65 kfree(info->argv[3]); /* check call_modprobe() */ in free_modprobe_argv()
66 kfree(info->argv); in free_modprobe_argv()
79 char **argv = kmalloc(sizeof(char *[5]), GFP_KERNEL); in call_modprobe() local
80 if (!argv) in call_modprobe()
87 argv[0] = modprobe_path; in call_modprobe()
88 argv[1] = "-q"; in call_modprobe()
89 argv[2] = "--"; in call_modprobe()
90 argv[3] = module_name; /* check free_modprobe_argv() */ in call_modprobe()
91 argv[4] = NULL; in call_modprobe()
93 info = call_usermodehelper_setup(modprobe_path, argv, envp, GFP_KERNEL, in call_modprobe()
103 kfree(argv); in call_modprobe()
253 (const char __user *const __user *)sub_info->argv, in call_usermodehelper_exec_async()
519 struct subprocess_info *call_usermodehelper_setup(char *path, char **argv, in call_usermodehelper_setup() argument
532 sub_info->argv = argv; in call_usermodehelper_setup()
616 int call_usermodehelper(char *path, char **argv, char **envp, int wait) in call_usermodehelper() argument
621 info = call_usermodehelper_setup(path, argv, envp, gfp_mask, in call_usermodehelper()