On Thu, 7 Nov 2013 11:07:30 +0800 Tiejun Chen <tiejun.chen@xxxxxxxxxxxxx> wrote: > It should make better sense than before. But this change log makes no sense. > > Signed-off-by: Tiejun Chen <tiejun.chen@xxxxxxxxxxxxx> > --- > kernel/cpu.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/kernel/cpu.c b/kernel/cpu.c > index da6e128..7b1853f 100644 > --- a/kernel/cpu.c > +++ b/kernel/cpu.c > @@ -124,12 +124,11 @@ retry: > return; > } > > + preempt_enable(); > if (hp->grab_lock) { > - preempt_enable(); Just because we may enable preemption in both if branches, the decision for which branch to take must still be determined under preempt disable, otherwise things may no longer apply. That said, I'm not sure if it matters if we do enable preemption before the check or not. But I rather not blindly do so without looking at how that affects things. There's some subtle races between setting grab_lock and running the sync_task. It may not matter if we enabled preemption before the check, but it will take a bit of thought before that can be decided. -- Steve > hotplug_lock(hp); > hotplug_unlock(hp); > } else { > - preempt_enable(); > /* > * Try to push this task off of this CPU. > */ -- To unsubscribe from this list: send the line "unsubscribe stable-rt" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html