Skip to content

Commit 1ebcc65

Browse files
author
Ingo Molnar
committed
x86 PAT: tone down debugging messages
Linus reported these excessive debug printouts: > Overlap at 0xe0300000-0xe0400000 > Overlap at 0xe0300000-0xe0380000 > Overlap at 0xe0300000-0xe0400000 > Overlap at 0xe0300000-0xe0400000 > Overlap at 0xe0300000-0xe0400000 > Overlap at 0xe0300000-0xe0400000 > Overlap at 0xe0300000-0xe0400000 turn that into a pr_debug(). Signed-off-by: Ingo Molnar <[email protected]>
1 parent b1721d0 commit 1ebcc65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/x86/mm/pat.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ int reserve_memtype(u64 start, u64 end, unsigned long req_type,
334334
break;
335335
}
336336

337-
printk("Overlap at 0x%Lx-0x%Lx\n",
337+
pr_debug("Overlap at 0x%Lx-0x%Lx\n",
338338
saved_ptr->start, saved_ptr->end);
339339
/* No conflict. Go ahead and add this new entry */
340340
list_add(&new_entry->nd, saved_ptr->nd.prev);

0 commit comments

Comments
 (0)