summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Leroy <christophe.leroy@csgroup.eu>2023-09-25 20:31:49 +0200
committerMichael Ellerman <mpe@ellerman.id.au>2023-10-19 17:12:47 +1100
commitceaba662c06598e52cbe4b90fef6b71b7f965cf9 (patch)
tree5aeef5d9c336cca47a6d376e3ddf7c0517cf8336
parentbac4cffc7c4a009cf0d16f1785a275e0a7715e8d (diff)
powerpc/ptdump: Display _PAGE_READ and _PAGE_WRITE
Instead of always displaying either 'rw' or 'r ' depending on _PAGE_RW, display 'r' or ' ' for _PAGE_READ and 'w' or ' ' for _PAGE_WRITE. Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://msgid.link/dd8201a0f8fd87ce62a7ff2edc958b604b8ec3c0.1695659959.git.christophe.leroy@csgroup.eu
-rw-r--r--arch/powerpc/mm/ptdump/shared.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/arch/powerpc/mm/ptdump/shared.c b/arch/powerpc/mm/ptdump/shared.c
index 5ff101654c45..39c30c62b7ea 100644
--- a/arch/powerpc/mm/ptdump/shared.c
+++ b/arch/powerpc/mm/ptdump/shared.c
@@ -11,10 +11,15 @@
static const struct flag_info flag_array[] = {
{
- .mask = _PAGE_RW,
+ .mask = _PAGE_READ,
.val = 0,
- .set = "r ",
- .clear = "rw",
+ .set = " ",
+ .clear = "r",
+ }, {
+ .mask = _PAGE_WRITE,
+ .val = 0,
+ .set = " ",
+ .clear = "w",
}, {
.mask = _PAGE_EXEC,
.val = _PAGE_EXEC,