Lines Matching refs:argv
67 kfree(info->argv[3]); /* check call_modprobe() */ in free_modprobe_argv()
68 kfree(info->argv); in free_modprobe_argv()
81 char **argv = kmalloc(sizeof(char *[5]), GFP_KERNEL); in call_modprobe() local
82 if (!argv) in call_modprobe()
89 argv[0] = modprobe_path; in call_modprobe()
90 argv[1] = "-q"; in call_modprobe()
91 argv[2] = "--"; in call_modprobe()
92 argv[3] = module_name; /* check free_modprobe_argv() */ in call_modprobe()
93 argv[4] = NULL; in call_modprobe()
95 info = call_usermodehelper_setup(modprobe_path, argv, envp, GFP_KERNEL, in call_modprobe()
105 kfree(argv); in call_modprobe()
257 (const char __user *const __user *)sub_info->argv, in ____call_usermodehelper()
501 struct subprocess_info *call_usermodehelper_setup(char *path, char **argv, in call_usermodehelper_setup() argument
514 sub_info->argv = argv; in call_usermodehelper_setup()
598 int call_usermodehelper(char *path, char **argv, char **envp, int wait) in call_usermodehelper() argument
603 info = call_usermodehelper_setup(path, argv, envp, gfp_mask, in call_usermodehelper()