diff options
Diffstat (limited to 'kernel/smpboot.c')
| -rw-r--r-- | kernel/smpboot.c | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/kernel/smpboot.c b/kernel/smpboot.c index a818cbc73e14..d264f59bff56 100644 --- a/kernel/smpboot.c +++ b/kernel/smpboot.c @@ -222,9 +222,8 @@ static void smpboot_unpark_thread(struct smp_hotplug_thread *ht, unsigned int cp  {  	struct task_struct *tsk = *per_cpu_ptr(ht->store, cpu); -	if (ht->pre_unpark) -		ht->pre_unpark(cpu); -	kthread_unpark(tsk); +	if (!ht->selfparking) +		kthread_unpark(tsk);  }  void smpboot_unpark_threads(unsigned int cpu) | 
