mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-01 20:14:08 +00:00
kmod: convert two call sites to call_usermodehelper_fns()
Both kernel/sys.c && security/keys/request_key.c where inlining the exact same code as call_usermodehelper_fns(); So simply convert these sites to directly use call_usermodehelper_fns(). Signed-off-by: Boaz Harrosh <bharrosh@panasas.com> Cc: Oleg Nesterov <oleg@redhat.com> Cc: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> Cc: Ingo Molnar <mingo@elte.hu> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
ae3cef7300
commit
81ab6e7b26
2 changed files with 11 additions and 21 deletions
19
kernel/sys.c
19
kernel/sys.c
|
@ -2114,7 +2114,6 @@ int orderly_poweroff(bool force)
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
int ret = -ENOMEM;
|
int ret = -ENOMEM;
|
||||||
struct subprocess_info *info;
|
|
||||||
|
|
||||||
if (argv == NULL) {
|
if (argv == NULL) {
|
||||||
printk(KERN_WARNING "%s failed to allocate memory for \"%s\"\n",
|
printk(KERN_WARNING "%s failed to allocate memory for \"%s\"\n",
|
||||||
|
@ -2122,18 +2121,16 @@ int orderly_poweroff(bool force)
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
info = call_usermodehelper_setup(argv[0], argv, envp, GFP_ATOMIC);
|
ret = call_usermodehelper_fns(argv[0], argv, envp, UMH_NO_WAIT,
|
||||||
if (info == NULL) {
|
NULL, argv_cleanup, NULL);
|
||||||
|
out:
|
||||||
|
if (likely(!ret))
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
if (ret == -ENOMEM)
|
||||||
argv_free(argv);
|
argv_free(argv);
|
||||||
goto out;
|
|
||||||
}
|
|
||||||
|
|
||||||
call_usermodehelper_setfns(info, NULL, argv_cleanup, NULL);
|
if (force) {
|
||||||
|
|
||||||
ret = call_usermodehelper_exec(info, UMH_NO_WAIT);
|
|
||||||
|
|
||||||
out:
|
|
||||||
if (ret && force) {
|
|
||||||
printk(KERN_WARNING "Failed to start orderly shutdown: "
|
printk(KERN_WARNING "Failed to start orderly shutdown: "
|
||||||
"forcing the issue\n");
|
"forcing the issue\n");
|
||||||
|
|
||||||
|
|
|
@ -93,16 +93,9 @@ static void umh_keys_cleanup(struct subprocess_info *info)
|
||||||
static int call_usermodehelper_keys(char *path, char **argv, char **envp,
|
static int call_usermodehelper_keys(char *path, char **argv, char **envp,
|
||||||
struct key *session_keyring, int wait)
|
struct key *session_keyring, int wait)
|
||||||
{
|
{
|
||||||
gfp_t gfp_mask = (wait == UMH_NO_WAIT) ? GFP_ATOMIC : GFP_KERNEL;
|
return call_usermodehelper_fns(path, argv, envp, wait,
|
||||||
struct subprocess_info *info =
|
umh_keys_init, umh_keys_cleanup,
|
||||||
call_usermodehelper_setup(path, argv, envp, gfp_mask);
|
key_get(session_keyring));
|
||||||
|
|
||||||
if (!info)
|
|
||||||
return -ENOMEM;
|
|
||||||
|
|
||||||
call_usermodehelper_setfns(info, umh_keys_init, umh_keys_cleanup,
|
|
||||||
key_get(session_keyring));
|
|
||||||
return call_usermodehelper_exec(info, wait);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Reference in a new issue