Commit fce72d4b authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

cpuid: fix hotplug cpu remove bug for class device.

Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
parent e1372495
...@@ -158,35 +158,27 @@ static struct file_operations cpuid_fops = { ...@@ -158,35 +158,27 @@ static struct file_operations cpuid_fops = {
.open = cpuid_open, .open = cpuid_open,
}; };
static void cpuid_class_simple_device_remove(void)
{
int i = 0;
for_each_online_cpu(i)
class_simple_device_remove(MKDEV(CPUID_MAJOR, i));
return;
}
static int cpuid_class_simple_device_add(int i) static int cpuid_class_simple_device_add(int i)
{ {
int err = 0; int err = 0;
struct class_device *class_err; struct class_device *class_err;
class_err = class_simple_device_add(cpuid_class, MKDEV(CPUID_MAJOR, i), NULL, "cpu%d",i); class_err = class_simple_device_add(cpuid_class, MKDEV(CPUID_MAJOR, i), NULL, "cpu%d",i);
if (IS_ERR(class_err)) { if (IS_ERR(class_err))
err = PTR_ERR(class_err); err = PTR_ERR(class_err);
}
return err; return err;
} }
static int __devinit cpuid_class_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu) static int __devinit cpuid_class_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu)
{ {
unsigned int cpu = (unsigned long)hcpu; unsigned int cpu = (unsigned long)hcpu;
switch(action) { switch (action) {
case CPU_ONLINE: case CPU_ONLINE:
cpuid_class_simple_device_add(cpu); cpuid_class_simple_device_add(cpu);
break; break;
case CPU_DEAD: case CPU_DEAD:
cpuid_class_simple_device_remove(); class_simple_device_remove(MKDEV(CPUID_MAJOR, cpu));
break; break;
} }
return NOTIFY_OK; return NOTIFY_OK;
...@@ -224,7 +216,10 @@ int __init cpuid_init(void) ...@@ -224,7 +216,10 @@ int __init cpuid_init(void)
goto out; goto out;
out_class: out_class:
cpuid_class_simple_device_remove(); i = 0;
for_each_online_cpu(i) {
class_simple_device_remove(MKDEV(CPUID_MAJOR, i));
}
class_simple_destroy(cpuid_class); class_simple_destroy(cpuid_class);
out_chrdev: out_chrdev:
unregister_chrdev(CPUID_MAJOR, "cpu/cpuid"); unregister_chrdev(CPUID_MAJOR, "cpu/cpuid");
...@@ -234,7 +229,10 @@ int __init cpuid_init(void) ...@@ -234,7 +229,10 @@ int __init cpuid_init(void)
void __exit cpuid_exit(void) void __exit cpuid_exit(void)
{ {
cpuid_class_simple_device_remove(); int cpu = 0;
for_each_online_cpu(cpu)
class_simple_device_remove(MKDEV(CPUID_MAJOR, cpu));
class_simple_destroy(cpuid_class); class_simple_destroy(cpuid_class);
unregister_chrdev(CPUID_MAJOR, "cpu/cpuid"); unregister_chrdev(CPUID_MAJOR, "cpu/cpuid");
unregister_cpu_notifier(&cpuid_class_cpu_notifier); unregister_cpu_notifier(&cpuid_class_cpu_notifier);
......
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