|
@@ -339,17 +339,18 @@ exit:
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
|
static void pkgtemp_device_remove(unsigned int cpu)
|
|
static void pkgtemp_device_remove(unsigned int cpu)
|
|
{
|
|
{
|
|
- struct pdev_entry *p, *n;
|
|
|
|
|
|
+ struct pdev_entry *p;
|
|
unsigned int i;
|
|
unsigned int i;
|
|
int err;
|
|
int err;
|
|
|
|
|
|
mutex_lock(&pdev_list_mutex);
|
|
mutex_lock(&pdev_list_mutex);
|
|
- list_for_each_entry_safe(p, n, &pdev_list, list) {
|
|
|
|
|
|
+ list_for_each_entry(p, &pdev_list, list) {
|
|
if (p->cpu != cpu)
|
|
if (p->cpu != cpu)
|
|
continue;
|
|
continue;
|
|
|
|
|
|
platform_device_unregister(p->pdev);
|
|
platform_device_unregister(p->pdev);
|
|
list_del(&p->list);
|
|
list_del(&p->list);
|
|
|
|
+ mutex_unlock(&pdev_list_mutex);
|
|
kfree(p);
|
|
kfree(p);
|
|
for_each_cpu(i, cpu_core_mask(cpu)) {
|
|
for_each_cpu(i, cpu_core_mask(cpu)) {
|
|
if (i != cpu) {
|
|
if (i != cpu) {
|
|
@@ -358,7 +359,7 @@ static void pkgtemp_device_remove(unsigned int cpu)
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- break;
|
|
|
|
|
|
+ return;
|
|
}
|
|
}
|
|
mutex_unlock(&pdev_list_mutex);
|
|
mutex_unlock(&pdev_list_mutex);
|
|
}
|
|
}
|