Re: [PATCH] powerpc/ptdump: Fix display of RW pages on FSL_BOOK3E

2022-07-04 Thread Michael Ellerman
On Tue, 28 Jun 2022 16:43:35 +0200, Christophe Leroy wrote: > On FSL_BOOK3E, _PAGE_RW is defined with two bits, one for user and one > for supervisor. As soon as one of the two bits is set, the page has > to be display as RW. But the way it is implemented today requires both > bits to be set in ord

[PATCH] powerpc/ptdump: Fix display of RW pages on FSL_BOOK3E

2022-06-28 Thread Christophe Leroy
On FSL_BOOK3E, _PAGE_RW is defined with two bits, one for user and one for supervisor. As soon as one of the two bits is set, the page has to be display as RW. But the way it is implemented today requires both bits to be set in order to display it as RW. Instead of display RW when _PAGE_RW bits ar