diff options
author | Matt Rushton <mvrushton@gmail.com> | 2014-07-19 20:01:34 -0400 |
---|---|---|
committer | David Vrabel <david.vrabel@citrix.com> | 2014-07-31 13:40:13 -0400 |
commit | 3fbdf631b765571b18ee51e073d8f46958e98ceb (patch) | |
tree | 8038355d791a3bf0c1dc52629431e0cbd74b2f03 /arch/x86/xen/p2m.c | |
parent | e4a7431240e0e4230bb4e2e05ccf413325a60e88 (diff) |
xen/setup: Remove Identity Map Debug Message
Removing a debug message for setting the identity map since it becomes
rather noisy after rework of the identity map code.
Signed-off-by: Matthew Rushton <mrushton@amazon.com>
Signed-off-by: David Vrabel <david.vrabel@citrix.com>
Diffstat (limited to 'arch/x86/xen/p2m.c')
-rw-r--r-- | arch/x86/xen/p2m.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/x86/xen/p2m.c b/arch/x86/xen/p2m.c index 9bb3d82ffec8..3172692381ae 100644 --- a/arch/x86/xen/p2m.c +++ b/arch/x86/xen/p2m.c | |||
@@ -841,10 +841,9 @@ unsigned long __init set_phys_range_identity(unsigned long pfn_s, | |||
841 | pfn = ALIGN(pfn, P2M_PER_PAGE); | 841 | pfn = ALIGN(pfn, P2M_PER_PAGE); |
842 | } | 842 | } |
843 | 843 | ||
844 | if (!WARN((pfn - pfn_s) != (pfn_e - pfn_s), | 844 | WARN((pfn - pfn_s) != (pfn_e - pfn_s), |
845 | "Identity mapping failed. We are %ld short of 1-1 mappings!\n", | 845 | "Identity mapping failed. We are %ld short of 1-1 mappings!\n", |
846 | (pfn_e - pfn_s) - (pfn - pfn_s))) | 846 | (pfn_e - pfn_s) - (pfn - pfn_s)); |
847 | printk(KERN_DEBUG "1-1 mapping on %lx->%lx\n", pfn_s, pfn); | ||
848 | 847 | ||
849 | return pfn - pfn_s; | 848 | return pfn - pfn_s; |
850 | } | 849 | } |