ftrace: stacktrace fix
authorIngo Molnar <mingo@elte.hu>
Mon, 12 May 2008 19:21:15 +0000 (21:21 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Fri, 23 May 2008 20:34:56 +0000 (22:34 +0200)
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
include/linux/ftrace.h
kernel/semaphore.c
kernel/trace/trace.c
kernel/trace/trace.h

index 0d3714e7110bde349a2fd1fc823dbadcc9ab9399..017ab44d572ac1f1067a3f4dcc2dac28171bf109 100644 (file)
@@ -120,4 +120,12 @@ static inline void tracer_disable(void)
 # define trace_preempt_off(a0, a1)             do { } while (0)
 #endif
 
+#ifdef CONFIG_CONTEXT_SWITCH_TRACER
+extern void
+ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3);
+#else
+static inline void
+ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3) { }
+#endif
+
 #endif /* _LINUX_FTRACE_H */
index 5c2942e768cdd44371ae305d5870abfe7428732c..1a064adab658cbacc72c2fe8a88ab7e6f3a2efeb 100644 (file)
@@ -31,6 +31,7 @@
 #include <linux/sched.h>
 #include <linux/semaphore.h>
 #include <linux/spinlock.h>
+#include <linux/ftrace.h>
 
 static noinline void __down(struct semaphore *sem);
 static noinline int __down_interruptible(struct semaphore *sem);
@@ -53,6 +54,7 @@ void down(struct semaphore *sem)
 {
        unsigned long flags;
 
+       ftrace_special(sem->count, 0, __LINE__);
        spin_lock_irqsave(&sem->lock, flags);
        if (likely(sem->count > 0))
                sem->count--;
index 2824cf48cdca581924883544396e9a2f4fe0d569..3271916ff0339e7cc728c1bba55e6db9de9a83c7 100644 (file)
@@ -901,7 +901,7 @@ tracing_sched_switch_trace(struct trace_array *tr,
        entry->ctx.next_pid     = next->pid;
        entry->ctx.next_prio    = next->prio;
        entry->ctx.next_state   = next->state;
-       __trace_stack(tr, data, flags, 4);
+       __trace_stack(tr, data, flags, 5);
        __raw_spin_unlock(&data->lock);
        raw_local_irq_restore(irq_flags);
 }
@@ -927,7 +927,7 @@ tracing_sched_wakeup_trace(struct trace_array *tr,
        entry->ctx.next_pid     = wakee->pid;
        entry->ctx.next_prio    = wakee->prio;
        entry->ctx.next_state   = wakee->state;
-       __trace_stack(tr, data, flags, 5);
+       __trace_stack(tr, data, flags, 6);
        __raw_spin_unlock(&data->lock);
        raw_local_irq_restore(irq_flags);
 
index f5de0601b408ead6ac3e0e5775d6d1ae77391dee..c460e85e94ed81ddb64283c9bb4ea7749a384663 100644 (file)
@@ -51,7 +51,7 @@ struct special_entry {
  * Stack-trace entry:
  */
 
-#define FTRACE_STACK_ENTRIES   5
+#define FTRACE_STACK_ENTRIES   8
 
 struct stack_entry {
        unsigned long           caller[FTRACE_STACK_ENTRIES];