Commit 519248f3 authored by Paul E. McKenney's avatar Paul E. McKenney
Browse files

lockdep: Make print_lock() address visible



Security is a wonderful thing, but so is the ability to debug based on
lockdep warnings.  This commit therefore makes lockdep lock addresses
visible in the clear.

Signed-off-by: default avatarPaul E. McKenney <paulmck@linux.ibm.com>
parent 609488bc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -620,7 +620,7 @@ static void print_lock(struct held_lock *hlock)
		return;
	}

	printk(KERN_CONT "%p", hlock->instance);
	printk(KERN_CONT "%px", hlock->instance);
	print_lock_name(lock);
	printk(KERN_CONT ", at: %pS\n", (void *)hlock->acquire_ip);
}