diff options
author | Nathan Lynch <ntl@pobox.com> | 2005-06-25 17:55:05 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-25 19:24:31 -0400 |
commit | fb69c3907ead36b9e9f41ea6f0d0e0ae10a38a47 (patch) | |
tree | 9433861b7c02d9d29df10dcb82dfced3f6d5f15d /drivers/base | |
parent | a9fa06c26f7b7914c8cdf4d309b74df3151cc227 (diff) |
[PATCH] generate hotplug events for cpu online
We already do kobject_hotplug for cpu offline; this adds a kobject_hotplug
call for the online case. This is being requested by developers of an
application which wants to be notified about both kinds of events.
Signed-off-by: Nathan Lynch <ntl@pobox.com>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Cc: Greg KH <greg@kroah.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/base')
-rw-r--r-- | drivers/base/cpu.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/base/cpu.c b/drivers/base/cpu.c index 0bf2dc11cdb8..b79badd0f158 100644 --- a/drivers/base/cpu.c +++ b/drivers/base/cpu.c | |||
@@ -44,6 +44,8 @@ static ssize_t store_online(struct sys_device *dev, const char *buf, | |||
44 | ret = smp_prepare_cpu(cpu->sysdev.id); | 44 | ret = smp_prepare_cpu(cpu->sysdev.id); |
45 | if (!ret) | 45 | if (!ret) |
46 | ret = cpu_up(cpu->sysdev.id); | 46 | ret = cpu_up(cpu->sysdev.id); |
47 | if (!ret) | ||
48 | kobject_hotplug(&dev->kobj, KOBJ_ONLINE); | ||
47 | break; | 49 | break; |
48 | default: | 50 | default: |
49 | ret = -EINVAL; | 51 | ret = -EINVAL; |