diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2013-06-26 20:04:25 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2013-06-26 20:04:25 -0400 |
commit | 3f90b82df110ef9cb33761b56ca85ae0d0372d4a (patch) | |
tree | ed408d852d5d5c3baca41f0539d8d6526c6cac95 /arch/mips/mm/tlbex.c | |
parent | a3d9086bb121a6459c9ed0452e3c58891a504785 (diff) |
MIPS: tlbex: Fix size of area to be flushed.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mm/tlbex.c')
-rw-r--r-- | arch/mips/mm/tlbex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/mm/tlbex.c b/arch/mips/mm/tlbex.c index 7f6cd461dac5..2f88fd3a64cf 100644 --- a/arch/mips/mm/tlbex.c +++ b/arch/mips/mm/tlbex.c | |||
@@ -2191,7 +2191,7 @@ static void __cpuinit flush_tlb_handlers(void) | |||
2191 | (unsigned long)handle_tlbm + sizeof(handle_tlbm)); | 2191 | (unsigned long)handle_tlbm + sizeof(handle_tlbm)); |
2192 | #ifdef CONFIG_MIPS_PGD_C0_CONTEXT | 2192 | #ifdef CONFIG_MIPS_PGD_C0_CONTEXT |
2193 | local_flush_icache_range((unsigned long)tlbmiss_handler_setup_pgd_array, | 2193 | local_flush_icache_range((unsigned long)tlbmiss_handler_setup_pgd_array, |
2194 | (unsigned long)tlbmiss_handler_setup_pgd_array + sizeof(handle_tlbm)); | 2194 | (unsigned long)tlbmiss_handler_setup_pgd_array + sizeof(tlbmiss_handler_setup_pgd_array)); |
2195 | #endif | 2195 | #endif |
2196 | } | 2196 | } |
2197 | 2197 | ||