aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2014-09-28 00:30:57 -0400
committerDavid S. Miller <davem@davemloft.net>2014-10-05 19:53:40 -0400
commitd195b71bad4347d2df51072a537f922546a904f1 (patch)
tree362c818469223f5ff4eb7476b485f6b55afb4cce
parentee6a9333fa58e11577c1b531b8e0f5ffc0fd6f50 (diff)
sparc64: Kill unnecessary tables and increase MAX_BANKS.
swapper_low_pmd_dir and swapper_pud_dir are actually completely useless and unnecessary. We just need swapper_pg_dir[]. Naturally the other page table chunks will be allocated on an as-needed basis. Since the kernel actually accesses these tables in the PAGE_OFFSET view, there is not even a TLB locality advantage of placing them in the kernel image. Use the hard coded vmlinux.ld.S slot for swapper_pg_dir which is naturally page aligned. Increase MAX_BANKS to 1024 in order to handle heavily fragmented virtual guests. Even with this MAX_BANKS increase, the kernel is 20K+ smaller. Signed-off-by: David S. Miller <davem@davemloft.net> Acked-by: Bob Picco <bob.picco@oracle.com>
-rw-r--r--arch/sparc/include/asm/pgtable_64.h1
-rw-r--r--arch/sparc/kernel/vmlinux.lds.S5
-rw-r--r--arch/sparc/mm/init_64.c25
3 files changed, 5 insertions, 26 deletions
diff --git a/arch/sparc/include/asm/pgtable_64.h b/arch/sparc/include/asm/pgtable_64.h
index c0939228e4b1..bfeb626085ac 100644
--- a/arch/sparc/include/asm/pgtable_64.h
+++ b/arch/sparc/include/asm/pgtable_64.h
@@ -927,7 +927,6 @@ static inline void __set_pte_at(struct mm_struct *mm, unsigned long addr,
927#endif 927#endif
928 928
929extern pgd_t swapper_pg_dir[PTRS_PER_PGD]; 929extern pgd_t swapper_pg_dir[PTRS_PER_PGD];
930extern pmd_t swapper_low_pmd_dir[PTRS_PER_PMD];
931 930
932void paging_init(void); 931void paging_init(void);
933unsigned long find_ecache_flush_span(unsigned long size); 932unsigned long find_ecache_flush_span(unsigned long size);
diff --git a/arch/sparc/kernel/vmlinux.lds.S b/arch/sparc/kernel/vmlinux.lds.S
index 0bacceb19150..09243057cb0b 100644
--- a/arch/sparc/kernel/vmlinux.lds.S
+++ b/arch/sparc/kernel/vmlinux.lds.S
@@ -35,8 +35,9 @@ jiffies = jiffies_64;
35 35
36SECTIONS 36SECTIONS
37{ 37{
38 /* swapper_low_pmd_dir is sparc64 only */ 38#ifdef CONFIG_SPARC64
39 swapper_low_pmd_dir = 0x0000000000402000; 39 swapper_pg_dir = 0x0000000000402000;
40#endif
40 . = INITIAL_ADDRESS; 41 . = INITIAL_ADDRESS;
41 .text TEXTSTART : 42 .text TEXTSTART :
42 { 43 {
diff --git a/arch/sparc/mm/init_64.c b/arch/sparc/mm/init_64.c
index 0ead74b2b9e3..2d91c62f7f5f 100644
--- a/arch/sparc/mm/init_64.c
+++ b/arch/sparc/mm/init_64.c
@@ -87,7 +87,7 @@ extern struct tsb swapper_tsb[KERNEL_TSB_NENTRIES];
87 87
88static unsigned long cpu_pgsz_mask; 88static unsigned long cpu_pgsz_mask;
89 89
90#define MAX_BANKS 32 90#define MAX_BANKS 1024
91 91
92static struct linux_prom64_registers pavail[MAX_BANKS]; 92static struct linux_prom64_registers pavail[MAX_BANKS];
93static int pavail_ents; 93static int pavail_ents;
@@ -1943,12 +1943,6 @@ static void __init sun4v_linear_pte_xor_finalize(void)
1943 1943
1944static unsigned long last_valid_pfn; 1944static unsigned long last_valid_pfn;
1945 1945
1946/* These must be page aligned in order to not trigger the
1947 * alignment tests of pgd_bad() and pud_bad().
1948 */
1949pgd_t swapper_pg_dir[PTRS_PER_PGD] __attribute__ ((aligned (PAGE_SIZE)));
1950static pud_t swapper_pud_dir[PTRS_PER_PUD] __attribute__ ((aligned (PAGE_SIZE)));
1951
1952static void sun4u_pgprot_init(void); 1946static void sun4u_pgprot_init(void);
1953static void sun4v_pgprot_init(void); 1947static void sun4v_pgprot_init(void);
1954 1948
@@ -2002,8 +1996,6 @@ void __init paging_init(void)
2002{ 1996{
2003 unsigned long end_pfn, shift, phys_base; 1997 unsigned long end_pfn, shift, phys_base;
2004 unsigned long real_end, i; 1998 unsigned long real_end, i;
2005 pud_t *pud;
2006 pmd_t *pmd;
2007 int node; 1999 int node;
2008 2000
2009 setup_page_offset(); 2001 setup_page_offset();
@@ -2099,20 +2091,7 @@ void __init paging_init(void)
2099 */ 2091 */
2100 init_mm.pgd += ((shift) / (sizeof(pgd_t))); 2092 init_mm.pgd += ((shift) / (sizeof(pgd_t)));
2101 2093
2102 memset(swapper_low_pmd_dir, 0, sizeof(swapper_low_pmd_dir)); 2094 memset(swapper_pg_dir, 0, sizeof(swapper_pg_dir));
2103
2104 /* The kernel page tables we publish into what the rest of the
2105 * world sees must be adjusted so that they see the PAGE_OFFSET
2106 * address of these in-kerenel data structures. However right
2107 * here we must access them from the kernel image side, because
2108 * the trap tables haven't been taken over and therefore we cannot
2109 * take TLB misses in the PAGE_OFFSET linear mappings yet.
2110 */
2111 pud = swapper_pud_dir + (shift / sizeof(pud_t));
2112 pgd_set(&swapper_pg_dir[0], pud);
2113
2114 pmd = swapper_low_pmd_dir + (shift / sizeof(pmd_t));
2115 pud_set(&swapper_pud_dir[0], pmd);
2116 2095
2117 inherit_prom_mappings(); 2096 inherit_prom_mappings();
2118 2097