aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sched.c
diff options
context:
space:
mode:
authorVenkatesh Pallipadi <venki@google.com>2010-12-21 20:09:00 -0500
committerIngo Molnar <mingo@elte.hu>2011-01-26 06:33:20 -0500
commit4dd53d891ca46dcc1fde0376a33540d3fd83cb9a (patch)
tree9a6c242176f196c062ae76c50b0f321251900b5a /kernel/sched.c
parentf07333bf6ee66d9b49286cec4371cf375e745b7a (diff)
softirqs: Free up pf flag PF_KSOFTIRQD
Cleanup patch, freeing up PF_KSOFTIRQD and use per_cpu ksoftirqd pointer instead, as suggested by Eric Dumazet. Tested-by: Shaun Ruffell <sruffell@digium.com> Signed-off-by: Venkatesh Pallipadi <venki@google.com> Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> LKML-Reference: <1292980144-28796-2-git-send-email-venki@google.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sched.c')
-rw-r--r--kernel/sched.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sched.c b/kernel/sched.c
index 6820b5b3a969..8b89b3bba565 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -1880,7 +1880,7 @@ void account_system_vtime(struct task_struct *curr)
1880 */ 1880 */
1881 if (hardirq_count()) 1881 if (hardirq_count())
1882 __this_cpu_add(cpu_hardirq_time, delta); 1882 __this_cpu_add(cpu_hardirq_time, delta);
1883 else if (in_serving_softirq() && !(curr->flags & PF_KSOFTIRQD)) 1883 else if (in_serving_softirq() && curr != this_cpu_ksoftirqd())
1884 __this_cpu_add(cpu_softirq_time, delta); 1884 __this_cpu_add(cpu_softirq_time, delta);
1885 1885
1886 irq_time_write_end(); 1886 irq_time_write_end();