diff options
author | Christophe Leroy <christophe.leroy@c-s.fr> | 2018-10-15 06:37:41 +0000 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2018-10-20 13:26:47 +1100 |
commit | 3ff38e1874863827374b02b4f31c73faa3744e1c (patch) | |
tree | 94d3ba8404cfded1d29fae9844feeaf3882ec00a /arch/powerpc | |
parent | c6c26fb55e8e4b3fc376be5611685990a17de27a (diff) | |
download | linux-3ff38e1874863827374b02b4f31c73faa3744e1c.tar.gz linux-3ff38e1874863827374b02b4f31c73faa3744e1c.tar.bz2 linux-3ff38e1874863827374b02b4f31c73faa3744e1c.zip |
powerpc/book3s64: fix dump_linuxpagetables "present" flag
Since commit bd0dbb73e013 ("powerpc/mm/books3s: Add new pte bit to
mark pte temporarily invalid."), _PAGE_PRESENT doesn't mean exactly
that a page is present. A page is also considered preset when
_PAGE_INVALID is set.
This patch changes the meaning of "present" and adds a status "valid"
associated to the _PAGE_PRESENT flag.
Fixes: bd0dbb73e013 ("powerpc/mm/books3s: Add new pte bit to mark pte temporarily invalid.")
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/mm/dump_linuxpagetables-book3s64.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/arch/powerpc/mm/dump_linuxpagetables-book3s64.c b/arch/powerpc/mm/dump_linuxpagetables-book3s64.c index a637e612b205..ed6fcf78256e 100644 --- a/arch/powerpc/mm/dump_linuxpagetables-book3s64.c +++ b/arch/powerpc/mm/dump_linuxpagetables-book3s64.c @@ -38,8 +38,13 @@ static const struct flag_info flag_array[] = { }, { .mask = _PAGE_PRESENT, .val = _PAGE_PRESENT, - .set = "present", - .clear = " ", + .set = "valid", + .clear = " ", + }, { + .mask = _PAGE_PRESENT | _PAGE_INVALID, + .val = 0, + .set = " ", + .clear = "present", }, { .mask = H_PAGE_HASHPTE, .val = H_PAGE_HASHPTE, |