diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/i386/mach-voyager/voyager_thread.c | 2 | ||||
-rw-r--r-- | arch/x86_64/kernel/mce.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/i386/mach-voyager/voyager_thread.c b/arch/i386/mach-voyager/voyager_thread.c index b4b24e0e45..f9d5953381 100644 --- a/arch/i386/mach-voyager/voyager_thread.c +++ b/arch/i386/mach-voyager/voyager_thread.c | |||
@@ -52,7 +52,7 @@ execute(const char *string) | |||
52 | NULL, | 52 | NULL, |
53 | }; | 53 | }; |
54 | 54 | ||
55 | if ((ret = call_usermodehelper(argv[0], argv, envp, 1)) != 0) { | 55 | if ((ret = call_usermodehelper(argv[0], argv, envp, UMH_WAIT_PROC)) != 0) { |
56 | printk(KERN_ERR "Voyager failed to run \"%s\": %i\n", | 56 | printk(KERN_ERR "Voyager failed to run \"%s\": %i\n", |
57 | string, ret); | 57 | string, ret); |
58 | } | 58 | } |
diff --git a/arch/x86_64/kernel/mce.c b/arch/x86_64/kernel/mce.c index aa1d159917..f3fb817455 100644 --- a/arch/x86_64/kernel/mce.c +++ b/arch/x86_64/kernel/mce.c | |||
@@ -174,7 +174,7 @@ static void do_mce_trigger(void) | |||
174 | if (events != atomic_read(&mce_logged) && trigger[0]) { | 174 | if (events != atomic_read(&mce_logged) && trigger[0]) { |
175 | /* Small race window, but should be harmless. */ | 175 | /* Small race window, but should be harmless. */ |
176 | atomic_set(&mce_logged, events); | 176 | atomic_set(&mce_logged, events); |
177 | call_usermodehelper(trigger, trigger_argv, NULL, -1); | 177 | call_usermodehelper(trigger, trigger_argv, NULL, UMH_NO_WAIT); |
178 | } | 178 | } |
179 | } | 179 | } |
180 | 180 | ||