Commit 28667920 authored by Josef \'Jeff\' Sipek's avatar Josef \'Jeff\' Sipek Committed by Linus Torvalds

[PATCH] Add DEVPATH env variable to hotplug helper call

Add $DEVPATH to the environmental variables during /sbin/hotplug call.
Signed-off-by: default avatarJosef 'Jeff' Sipek <jeffpc@optonline.net>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 3e6132d6
......@@ -61,13 +61,13 @@ static inline void check_for_tasks(int cpu)
* cpu' with certain environment variables set. */
static int cpu_run_sbin_hotplug(unsigned int cpu, const char *action)
{
char *argv[3], *envp[5], cpu_str[12], action_str[32];
char *argv[3], *envp[6], cpu_str[12], action_str[32], devpath_str[40];
int i;
sprintf(cpu_str, "CPU=%d", cpu);
sprintf(action_str, "ACTION=%s", action);
/* FIXME: Add DEVPATH. --RR */
sprintf(devpath_str, "DEVPATH=devices/system/cpu/cpu%d", cpu);
i = 0;
argv[i++] = hotplug_path;
argv[i++] = "cpu";
......@@ -79,6 +79,7 @@ static int cpu_run_sbin_hotplug(unsigned int cpu, const char *action)
envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
envp[i++] = cpu_str;
envp[i++] = action_str;
envp[i++] = devpath_str;
envp[i] = NULL;
return call_usermodehelper(argv[0], argv, envp, 0);
......
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