diff options
Diffstat (limited to 'kernel/sched/core.c')
| -rw-r--r-- | kernel/sched/core.c | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/kernel/sched/core.c b/kernel/sched/core.c index 2b5243176ab..12af4270c9c 100644 --- a/kernel/sched/core.c +++ b/kernel/sched/core.c @@ -1752,9 +1752,8 @@ EXPORT_SYMBOL_GPL(preempt_notifier_unregister);  static void fire_sched_in_preempt_notifiers(struct task_struct *curr)  {  	struct preempt_notifier *notifier; -	struct hlist_node *node; -	hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link) +	hlist_for_each_entry(notifier, &curr->preempt_notifiers, link)  		notifier->ops->sched_in(notifier, raw_smp_processor_id());  } @@ -1763,9 +1762,8 @@ fire_sched_out_preempt_notifiers(struct task_struct *curr,  				 struct task_struct *next)  {  	struct preempt_notifier *notifier; -	struct hlist_node *node; -	hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link) +	hlist_for_each_entry(notifier, &curr->preempt_notifiers, link)  		notifier->ops->sched_out(notifier, next);  }  |