Home
last modified time | relevance | path

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

/linux/kernel/
H A Dumh.c46 static void umh_complete(struct subprocess_info *sub_info) in umh_complete() argument
48 struct completion *comp = xchg(&sub_info->complete, NULL); in umh_complete()
57 call_usermodehelper_freeinfo(sub_info); in umh_complete()
65 struct subprocess_info *sub_info = data; in call_usermodehelper_exec_async() local
98 if (sub_info->init) { in call_usermodehelper_exec_async()
99 retval = sub_info->init(sub_info, new); in call_usermodehelper_exec_async()
109 retval = kernel_execve(sub_info->path, in call_usermodehelper_exec_async()
110 (const char *const *)sub_info->argv, in call_usermodehelper_exec_async()
111 (const char *const *)sub_info->envp); in call_usermodehelper_exec_async()
113 sub_info->retval = retval; in call_usermodehelper_exec_async()
[all …]
/linux/fs/
H A Dcoredump.c977 struct subprocess_info *sub_info; in coredump_pipe() local
1015 sub_info = call_usermodehelper_setup(helper_argv[0], helper_argv, NULL, in coredump_pipe()
1018 if (!sub_info) in coredump_pipe()
1021 if (call_usermodehelper_exec(sub_info, UMH_WAIT_EXEC)) { in coredump_pipe()