Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1622989
| From | Christophe Leroy <christophe.leroy@c-s.fr> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] powerpc/mm: On PPC32, display 32 bits addresses in page table dump |
| Date | 2017-04-13 14:50 +0200 |
| Message-ID | <tvMme-34k-3@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
---
arch/powerpc/mm/dump_linuxpagetables.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/arch/powerpc/mm/dump_linuxpagetables.c b/arch/powerpc/mm/dump_linuxpagetables.c
index 98b7b07c6863..05109d7fa027 100644
--- a/arch/powerpc/mm/dump_linuxpagetables.c
+++ b/arch/powerpc/mm/dump_linuxpagetables.c
@@ -271,7 +271,11 @@ static void dump_addr(struct pg_state *st, unsigned long addr)
const char *unit = units;
unsigned long delta;
+#ifdef CONFIG_PPC32
+ seq_printf(st->seq, "0x%08lx-0x%08lx ", st->start_address, addr - 1);
+#else
seq_printf(st->seq, "0x%016lx-0x%016lx ", st->start_address, addr-1);
+#endif
delta = (addr - st->start_address) >> 10;
/* Work out what appropriate unit to use */
while (!(delta & 1023) && unit[1]) {
--
2.12.0
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] powerpc/mm: On PPC32, display 32 bits addresses in page table dump Christophe Leroy <christophe.leroy@c-s.fr> - 2017-04-13 14:50 +0200
csiph-web