summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/mm/pat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/mm/pat.c b/arch/x86/mm/pat.c
index e26b81ca5b95..ea7da7e62e17 100644
--- a/arch/x86/mm/pat.c
+++ b/arch/x86/mm/pat.c
@@ -1179,10 +1179,10 @@ static int memtype_seq_show(struct seq_file *seq, void *v)
{
struct memtype *print_entry = (struct memtype *)v;
- seq_printf(seq, "%s @ 0x%Lx-0x%Lx\n",
- cattr_name(print_entry->type),
+ seq_printf(seq, "PAT: [mem 0x%016Lx-0x%016Lx] %s\n",
print_entry->start,
- print_entry->end);
+ print_entry->end,
+ cattr_name(print_entry->type));
kfree(print_entry);