diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-04-26 05:40:31 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-26 10:01:26 -0400 |
commit | 1ebcc654f010d4a63f3ebf8ddd2cab5a709b1824 (patch) | |
tree | 1fa90554da2c1be3c277bc7639642212f72a5fb6 /arch | |
parent | b1721d0da266b4af8cb4419473b4ca36206ab200 (diff) |
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 <mingo@elte.hu>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/mm/pat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/pat.c b/arch/x86/mm/pat.c index ef8b64b89c7d..9851265e4d65 100644 --- a/arch/x86/mm/pat.c +++ b/arch/x86/mm/pat.c | |||
@@ -334,7 +334,7 @@ int reserve_memtype(u64 start, u64 end, unsigned long req_type, | |||
334 | break; | 334 | break; |
335 | } | 335 | } |
336 | 336 | ||
337 | printk("Overlap at 0x%Lx-0x%Lx\n", | 337 | pr_debug("Overlap at 0x%Lx-0x%Lx\n", |
338 | saved_ptr->start, saved_ptr->end); | 338 | saved_ptr->start, saved_ptr->end); |
339 | /* No conflict. Go ahead and add this new entry */ | 339 | /* No conflict. Go ahead and add this new entry */ |
340 | list_add(&new_entry->nd, saved_ptr->nd.prev); | 340 | list_add(&new_entry->nd, saved_ptr->nd.prev); |