aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYinghai Lu <yhlu.kernel@gmail.com>2008-07-03 15:29:34 -0400
committerIngo Molnar <mingo@elte.hu>2008-07-09 04:43:24 -0400
commit49c980df552499e5e8595b52448f612fdab0484a (patch)
treeb938cf21da1e96ac09317de17b0b4551c9a9f0da
parentb50efd2a55fc1344654875369d458bb6838bd37a (diff)
x86: fix vmemmap printout check
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com> Cc: "Nick Piggin" <npiggin@suse.de> Cc: "Mark McLoughlin" <markmc@redhat.com> Cc: xen-devel <xen-devel@lists.xensource.com> Cc: "Eduardo Habkost" <ehabkost@redhat.com> Cc: "Vegard Nossum" <vegard.nossum@gmail.com> Cc: "Stephen Tweedie" <sct@redhat.com> Cc: "Jeremy Fitzhardinge" <jeremy@goop.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r--arch/x86/mm/init_64.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c
index 7227a0a3f3a0..f7d80313ede5 100644
--- a/arch/x86/mm/init_64.c
+++ b/arch/x86/mm/init_64.c
@@ -1104,9 +1104,6 @@ vmemmap_populate(struct page *start_page, unsigned long size, int node)
1104 PAGE_KERNEL_LARGE); 1104 PAGE_KERNEL_LARGE);
1105 set_pmd(pmd, __pmd(pte_val(entry))); 1105 set_pmd(pmd, __pmd(pte_val(entry)));
1106 1106
1107 addr_end = addr + PMD_SIZE;
1108 p_end = p + PMD_SIZE;
1109
1110 /* check to see if we have contiguous blocks */ 1107 /* check to see if we have contiguous blocks */
1111 if (p_end != p || node_start != node) { 1108 if (p_end != p || node_start != node) {
1112 if (p_start) 1109 if (p_start)
@@ -1116,6 +1113,9 @@ vmemmap_populate(struct page *start_page, unsigned long size, int node)
1116 node_start = node; 1113 node_start = node;
1117 p_start = p; 1114 p_start = p;
1118 } 1115 }
1116
1117 addr_end = addr + PMD_SIZE;
1118 p_end = p + PMD_SIZE;
1119 } else 1119 } else
1120 vmemmap_verify((pte_t *)pmd, node, addr, next); 1120 vmemmap_verify((pte_t *)pmd, node, addr, next);
1121 } 1121 }