]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
tracing: use recursive counter over irq level
authorSteven Rostedt <srostedt@redhat.com>
Mon, 20 Apr 2009 20:16:11 +0000 (16:16 -0400)
committerSteven Rostedt <rostedt@goodmis.org>
Mon, 20 Apr 2009 20:16:11 +0000 (16:16 -0400)
Althought using the irq level (hardirq_count, softirq_count and in_nmi)
was nice to detect bad recursion right away, but since the counters are
not atomically updated with respect to the interrupts, the function tracer
might trigger the test from an interrupt handler before the hardirq_count
is updated. This will trigger a false warning.

This patch converts the recursive detection to a simple counter.
If the depth is greater than 16 then the recursive detection will trigger.
16 is more than enough for any nested interrupts.

[ Impact: fix false positive trace recursion detection ]

Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
kernel/trace/ring_buffer.c

index a6997670cc4699928e9c1b0b697cc5722ebc12ae..7bcfd3e605375a8176360e0bb2b20649d758872c 100644 (file)
@@ -1481,47 +1481,34 @@ rb_reserve_next_event(struct ring_buffer_per_cpu *cpu_buffer,
        return event;
 }
 
-static int trace_irq_level(void)
-{
-       return (hardirq_count() >> HARDIRQ_SHIFT) +
-               (softirq_count() >> + SOFTIRQ_SHIFT) +
-               !!in_nmi();
-}
+#define TRACE_RECURSIVE_DEPTH 16
 
 static int trace_recursive_lock(void)
 {
-       int level;
-
-       level = trace_irq_level();
+       current->trace_recursion++;
 
-       if (unlikely(current->trace_recursion & (1 << level))) {
-               /* Disable all tracing before we do anything else */
-               tracing_off_permanent();
+       if (likely(current->trace_recursion < TRACE_RECURSIVE_DEPTH))
+               return 0;
 
-               printk_once(KERN_WARNING "Tracing recursion: "
-                           "HC[%lu]:SC[%lu]:NMI[%lu]\n",
-                           hardirq_count() >> HARDIRQ_SHIFT,
-                           softirq_count() >> SOFTIRQ_SHIFT,
-                           in_nmi());
+       /* Disable all tracing before we do anything else */
+       tracing_off_permanent();
 
-               WARN_ON_ONCE(1);
-               return -1;
-       }
+       printk_once(KERN_WARNING "Tracing recursion: depth[%d]:"
+                   "HC[%lu]:SC[%lu]:NMI[%lu]\n",
+                   current->trace_recursion,
+                   hardirq_count() >> HARDIRQ_SHIFT,
+                   softirq_count() >> SOFTIRQ_SHIFT,
+                   in_nmi());
 
-       current->trace_recursion |= 1 << level;
-
-       return 0;
+       WARN_ON_ONCE(1);
+       return -1;
 }
 
 static void trace_recursive_unlock(void)
 {
-       int level;
-
-       level = trace_irq_level();
-
-       WARN_ON_ONCE(!current->trace_recursion & (1 << level));
+       WARN_ON_ONCE(!current->trace_recursion);
 
-       current->trace_recursion &= ~(1 << level);
+       current->trace_recursion--;
 }
 
 static DEFINE_PER_CPU(int, rb_need_resched);