]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
x86, mm: Undo incorrect revert in arch/x86/mm/init.c
authorYinghai Lu <yinghai@kernel.org>
Thu, 25 Oct 2012 22:45:26 +0000 (15:45 -0700)
committerBen Hutchings <ben@decadent.org.uk>
Thu, 6 Dec 2012 11:20:09 +0000 (11:20 +0000)
commit f82f64dd9f485e13f29f369772d4a0e868e5633a upstream.

Commit

    844ab6f9 x86, mm: Find_early_table_space based on ranges that are actually being mapped

added back some lines back wrongly that has been removed in commit

    7b16bbf97 Revert "x86/mm: Fix the size calculation of mapping tables"

remove them again.

Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Link: http://lkml.kernel.org/r/CAE9FiQW_vuaYQbmagVnxT2DGsYc=9tNeAbdBq53sYkitPOwxSQ@mail.gmail.com
Acked-by: Jacob Shin <jacob.shin@amd.com>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
arch/x86/mm/init.c

index 7ab2eae6f8e733101552fe312b0a6949a7d3cf77..34a7f4038e9fec4273fc96021115d7d2e9dc675f 100644 (file)
@@ -64,10 +64,6 @@ static void __init find_early_table_space(struct map_range *mr, int nr_range)
 #ifdef CONFIG_X86_32
                        extra += PMD_SIZE;
 #endif
-                       /* The first 2/4M doesn't use large pages. */
-                       if (mr[i].start < PMD_SIZE)
-                               extra += range;
-
                        ptes += (extra + PAGE_SIZE - 1) >> PAGE_SHIFT;
                } else {
                        ptes += (range + PAGE_SIZE - 1) >> PAGE_SHIFT;