Home
last modified time | relevance | path

Searched refs:sub_info (Results 1 – 3 of 3) sorted by relevance

/linux-6.1.9/kernel/
Dumh.c50 static void umh_complete(struct subprocess_info *sub_info) in umh_complete() argument
52 struct completion *comp = xchg(&sub_info->complete, NULL); in umh_complete()
61 call_usermodehelper_freeinfo(sub_info); in umh_complete()
69 struct subprocess_info *sub_info = data; in call_usermodehelper_exec_async() local
102 if (sub_info->init) { in call_usermodehelper_exec_async()
103 retval = sub_info->init(sub_info, new); in call_usermodehelper_exec_async()
113 retval = kernel_execve(sub_info->path, in call_usermodehelper_exec_async()
114 (const char *const *)sub_info->argv, in call_usermodehelper_exec_async()
115 (const char *const *)sub_info->envp); in call_usermodehelper_exec_async()
117 sub_info->retval = retval; in call_usermodehelper_exec_async()
[all …]
Dusermode_driver.c171 struct subprocess_info *sub_info; in fork_usermode_driver() local
179 sub_info = call_usermodehelper_setup(info->driver_name, in fork_usermode_driver()
182 if (!sub_info) in fork_usermode_driver()
185 err = call_usermodehelper_exec(sub_info, UMH_WAIT_EXEC); in fork_usermode_driver()
/linux-6.1.9/fs/
Dcoredump.c574 struct subprocess_info *sub_info; in do_coredump() local
626 sub_info = call_usermodehelper_setup(helper_argv[0], in do_coredump()
629 if (sub_info) in do_coredump()
630 retval = call_usermodehelper_exec(sub_info, in do_coredump()