From: Marek Vasut <[email protected]> Add minor adjustment to the page table dumper to also print the status of the L1 PTE NS bit.
Signed-off-by: Marek Vasut <[email protected]> --- arch/arm/mm/dump.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/arch/arm/mm/dump.c b/arch/arm/mm/dump.c index c508f41..0100edb 100644 --- a/arch/arm/mm/dump.c +++ b/arch/arm/mm/dump.c @@ -176,6 +176,11 @@ static const struct prot_bits section_bits[] = { .val = PMD_SECT_S, .set = "SHD", .clear = " ", + }, { + .mask = PMD_SECT_NS, + .val = PMD_SECT_NS, + .set = "NS ", + .clear = "ns ", }, }; -- 1.9.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

