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

2018-01-17 Thread Michael Ellerman
On Wed, 2018-01-10 at 14:19:46 UTC, Michael Ellerman wrote: > Remember when the biggest problem we had to worry about was hashed > pointers, those were the days. > > These were missed in my earlier patch because they don't match "%p", > but the macro is hiding a "%p", so these all end up being has

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

2018-01-15 Thread Michael Ellerman
On Wed, 2018-01-10 at 14:19:46 UTC, Michael Ellerman wrote: > Remember when the biggest problem we had to worry about was hashed > pointers, those were the days. > > These were missed in my earlier patch because they don't match "%p", > but the macro is hiding a "%p", so these all end up being has

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

2018-01-10 Thread Michael Ellerman
Remember when the biggest problem we had to worry about was hashed pointers, those were the days. These were missed in my earlier patch because they don't match "%p", but the macro is hiding a "%p", so these all end up being hashed, which is not what we want in xmon. Convert them to "%px". Signed