usermodehelper: Tidy up waiting
Rather than using a tri-state integer for the wait flag in call_usermodehelper_exec, define a proper enum, and use that. I've preserved the integer values so that any callers I've missed should still work OK. Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com> Cc: James Bottomley <James.Bottomley@HansenPartnership.com> Cc: Randy Dunlap <randy.dunlap@oracle.com> Cc: Christoph Hellwig <hch@infradead.org> Cc: Andi Kleen <ak@suse.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Johannes Berg <johannes@sipsolutions.net> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Bjorn Helgaas <bjorn.helgaas@hp.com> Cc: Joel Becker <joel.becker@oracle.com> Cc: Tony Luck <tony.luck@intel.com> Cc: Kay Sievers <kay.sievers@vrfy.org> Cc: Srivatsa Vaddagiri <vatsa@in.ibm.com> Cc: Oleg Nesterov <oleg@tv-sign.ru> Cc: David Howells <dhowells@redhat.com>
This commit is contained in:

committed by
Jeremy Fitzhardinge

parent
10a0a8d4e3
commit
86313c488a
@@ -2327,7 +2327,7 @@ int orderly_poweroff(bool force)
|
||||
|
||||
call_usermodehelper_setcleanup(info, argv_cleanup);
|
||||
|
||||
ret = call_usermodehelper_exec(info, -1);
|
||||
ret = call_usermodehelper_exec(info, UMH_NO_WAIT);
|
||||
|
||||
out:
|
||||
if (ret && force) {
|
||||
|
Reference in New Issue
Block a user