Re: powerpc/xmon: Don't print hashed pointers in xmon

2017-12-08 Thread Michael Ellerman
On Wed, 2017-12-06 at 12:23:28 UTC, Michael Ellerman wrote: > Since commit ad67b74d2469 ("printk: hash addresses printed with %p") > pointers printed with %p are hashed, ie. you don't see the actual > pointer value but rather a cryptographic hash of its value. > > In xmon we want to see the actual

[PATCH] powerpc/xmon: Don't print hashed pointers in xmon

2017-12-06 Thread Michael Ellerman
Since commit ad67b74d2469 ("printk: hash addresses printed with %p") pointers printed with %p are hashed, ie. you don't see the actual pointer value but rather a cryptographic hash of its value. In xmon we want to see the actual pointer values, because xmon is a debugger, so replace %p with %px wh