diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-03-13 01:30:40 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-03-13 01:32:36 +0100 |
commit | d820ac4c2fa881079e6b689d2098adce337558ae (patch) | |
tree | 39e4e989d22271cd401f6974c9ae7accc571d500 /kernel | |
parent | 3c1f67d60e2b4f4455563928999fd41cc653645d (diff) | |
download | op-kernel-dev-d820ac4c2fa881079e6b689d2098adce337558ae.zip op-kernel-dev-d820ac4c2fa881079e6b689d2098adce337558ae.tar.gz |
locking: rename trace_softirq_[enter|exit] => lockdep_softirq_[enter|exit]
Impact: cleanup
The naming clashes with upcoming softirq tracepoints, so rename the
APIs to lockdep_*().
Requested-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/softirq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/softirq.c b/kernel/softirq.c index 9041ea7..08a030f 100644 --- a/kernel/softirq.c +++ b/kernel/softirq.c @@ -180,7 +180,7 @@ asmlinkage void __do_softirq(void) account_system_vtime(current); __local_bh_disable((unsigned long)__builtin_return_address(0)); - trace_softirq_enter(); + lockdep_softirq_enter(); cpu = smp_processor_id(); restart: @@ -220,7 +220,7 @@ restart: if (pending) wakeup_softirqd(); - trace_softirq_exit(); + lockdep_softirq_exit(); account_system_vtime(current); _local_bh_enable(); |