summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2012-10-04 13:30:25 (GMT)
committerEmil Medve <Emilian.Medve@Freescale.com>2013-04-30 08:17:28 (GMT)
commit9d61e5f91b0faf8426e816b7a91b25c4906c56a8 (patch)
tree9d03e7694c3e4a644e233b0b035adc64916ba387 /kernel
parentdf25caf4fa02ed364b357a7ed9116525ca133b7f (diff)
downloadlinux-fsl-qoriq-9d61e5f91b0faf8426e816b7a91b25c4906c56a8.tar.xz
softirq: Make serving softirqs a task flag
Avoid the percpu softirq_runner pointer magic by using a task flag. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/softirq.c20
1 files changed, 3 insertions, 17 deletions
diff --git a/kernel/softirq.c b/kernel/softirq.c
index f52cdbc..0a810e4 100644
--- a/kernel/softirq.c
+++ b/kernel/softirq.c
@@ -375,7 +375,6 @@ static void ksoftirqd_clr_sched_params(unsigned int cpu, bool online) { }
* On RT we serialize softirq execution with a cpu local lock
*/
static DEFINE_LOCAL_IRQ_LOCK(local_softirq_lock);
-static DEFINE_PER_CPU(struct task_struct *, local_softirq_runner);
static void __do_softirq_common(int need_rcu_bh_qs);
@@ -430,22 +429,9 @@ void _local_bh_enable(void)
}
EXPORT_SYMBOL(_local_bh_enable);
-/* For tracing */
-int notrace __in_softirq(void)
-{
- if (__get_cpu_var(local_softirq_lock).owner == current)
- return __get_cpu_var(local_softirq_lock).nestcnt;
- return 0;
-}
-
int in_serving_softirq(void)
{
- int res;
-
- preempt_disable();
- res = __get_cpu_var(local_softirq_runner) == current;
- preempt_enable();
- return res;
+ return current->flags & PF_IN_SOFTIRQ;
}
EXPORT_SYMBOL(in_serving_softirq);
@@ -463,7 +449,7 @@ static void __do_softirq_common(int need_rcu_bh_qs)
/* Reset the pending bitmask before enabling irqs */
set_softirq_pending(0);
- __get_cpu_var(local_softirq_runner) = current;
+ current->flags |= PF_IN_SOFTIRQ;
lockdep_softirq_enter();
@@ -474,7 +460,7 @@ static void __do_softirq_common(int need_rcu_bh_qs)
wakeup_softirqd();
lockdep_softirq_exit();
- __get_cpu_var(local_softirq_runner) = NULL;
+ current->flags &= ~PF_IN_SOFTIRQ;
current->softirq_nestcnt--;
}