diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2012-07-30 14:41:11 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-07-30 17:25:16 -0700 |
commit | 4b0681487bf72fdb86b42c93b7d8a607e5a426b1 (patch) | |
tree | 908da53ebb82951b1051f0c2021857fac9d7563f /lib/spinlock_debug.c | |
parent | 7463449b8287162454d7e00bf7fd2c64f72c1dc8 (diff) | |
download | kernel_goldelico_gta04-4b0681487bf72fdb86b42c93b7d8a607e5a426b1.zip kernel_goldelico_gta04-4b0681487bf72fdb86b42c93b7d8a607e5a426b1.tar.gz kernel_goldelico_gta04-4b0681487bf72fdb86b42c93b7d8a607e5a426b1.tar.bz2 |
spinlock_debug: print offset in addition to symbol name
If there are two spinlocks embedded in a structure that kallsyms knows
about and one of the spinlocks locks up we will print the name of the
containing structure instead of the address of the lock. This is quite
bad, so let's use %pS instead of %ps so we get an offset in addition to
the symbol so we can determine which particular lock is having problems.
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib/spinlock_debug.c')
-rw-r--r-- | lib/spinlock_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spinlock_debug.c b/lib/spinlock_debug.c index e91fbc2..eb10578 100644 --- a/lib/spinlock_debug.c +++ b/lib/spinlock_debug.c @@ -58,7 +58,7 @@ static void spin_dump(raw_spinlock_t *lock, const char *msg) printk(KERN_EMERG "BUG: spinlock %s on CPU#%d, %s/%d\n", msg, raw_smp_processor_id(), current->comm, task_pid_nr(current)); - printk(KERN_EMERG " lock: %ps, .magic: %08x, .owner: %s/%d, " + printk(KERN_EMERG " lock: %pS, .magic: %08x, .owner: %s/%d, " ".owner_cpu: %d\n", lock, lock->magic, owner ? owner->comm : "<none>", |