summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mm/vmalloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/vmalloc.c b/mm/vmalloc.c
index 8dee0fc2e944..ce2f94918a13 100644
--- a/mm/vmalloc.c
+++ b/mm/vmalloc.c
@@ -2620,7 +2620,7 @@ static int s_show(struct seq_file *m, void *p)
return 0;
if (!(va->flags & VM_VM_AREA)) {
- seq_printf(m, "0x%pK-0x%pK %7ld vm_map_ram\n",
+ seq_printf(m, "0x%p-0x%p %7ld vm_map_ram\n",
(void *)va->va_start, (void *)va->va_end,
va->va_end - va->va_start);
return 0;
@@ -2628,7 +2628,7 @@ static int s_show(struct seq_file *m, void *p)
v = va->vm;
- seq_printf(m, "0x%pK-0x%pK %7ld",
+ seq_printf(m, "0x%p-0x%p %7ld",
v->addr, v->addr + v->size, v->size);
if (v->caller)