lkml.org 
[lkml]   [2018]   [Mar]   [26]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH] lockdep: Show address of "struct lockdep_map" at print_lock().
On Mon, Mar 26, 2018 at 07:18:33PM +0900, Tetsuo Handa wrote:
> [ 628.863629] 2 locks held by a.out/1165:
> [ 628.867533] #0: [ffffa3b438472e48] (&mm->mmap_sem){++++}, at: __do_page_fault+0x16f/0x4d0
> [ 628.873570] #1: [ffffa3b4f2c52ac0] (&mapping->i_mmap_rwsem){++++}, at: rmap_walk_file+0x1d9/0x2a0

Maybe change the string a little, because from the above it's not at all
effident that the [] thing is the lock instance.

> diff --git a/kernel/locking/lockdep.c b/kernel/locking/lockdep.c
> index 12a2805..7835233 100644
> --- a/kernel/locking/lockdep.c
> +++ b/kernel/locking/lockdep.c
> @@ -556,9 +556,9 @@ static void print_lock(struct held_lock *hlock)
> return;
> }
>
> + printk(KERN_CONT "[%px]", hlock->instance);

And yeah, what Michal said, that wants to be %p, we're fine with the
thing being hashed, all we want to do is equivalience, which can be done
with hashed pinters too.

> print_lock_name(lock_classes + class_idx - 1);
> - printk(KERN_CONT ", at: [<%px>] %pS\n",
> - (void *)hlock->acquire_ip, (void *)hlock->acquire_ip);
> + printk(KERN_CONT ", at: %pS\n", (void *)hlock->acquire_ip);
> }

Otherwise no real objection to the patch.

\
 
 \ /
  Last update: 2018-03-26 18:06    [W:0.099 / U:0.800 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site