Commit 6a8d8abb authored by Kay Sievers's avatar Kay Sievers Committed by Greg Kroah-Hartman

Driver core: add CONFIG_UEVENT_HELPER_PATH

The kernel creates a process for every event that is send, even when
there is no binary it could execute.  We are needlessly creating around
200-300 failing processes during early bootup, until we have the chance
to disable it from userspace.

This change allows us to disable /sbin/hotplug entirely, if you want to,
by setting UEVENT_HELPER_PATH="" in the kernel config.
Signed-off-by: default avatarKay Sievers <kay.sievers@vrfy.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 7eff2e7a
menu "Generic Driver Options" menu "Generic Driver Options"
config UEVENT_HELPER_PATH
string "path to uevent helper"
depends on HOTPLUG
default "/sbin/hotplug"
help
Path to uevent helper program forked by the kernel for
every uevent.
config STANDALONE config STANDALONE
bool "Select only drivers that don't need compile-time external firmware" if EXPERIMENTAL bool "Select only drivers that don't need compile-time external firmware" if EXPERIMENTAL
default y default y
......
...@@ -35,7 +35,7 @@ const char *kobject_actions[] = { ...@@ -35,7 +35,7 @@ const char *kobject_actions[] = {
#if defined(CONFIG_HOTPLUG) #if defined(CONFIG_HOTPLUG)
u64 uevent_seqnum; u64 uevent_seqnum;
char uevent_helper[UEVENT_HELPER_PATH_LEN] = "/sbin/hotplug"; char uevent_helper[UEVENT_HELPER_PATH_LEN] = CONFIG_UEVENT_HELPER_PATH;
static DEFINE_SPINLOCK(sequence_lock); static DEFINE_SPINLOCK(sequence_lock);
#if defined(CONFIG_NET) #if defined(CONFIG_NET)
static struct sock *uevent_sock; static struct sock *uevent_sock;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment