Browse Source

ARM: 5885/1: arm: Flush TLB entries in setup_mm_for_reboot()

We need to do that if we tinker with the MMU entries.

This fixes the occasional bug with kexec where the new
fails to uncompress with "crc error". Most likely at
least kexec on v6 and v7 need this fix.

Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Tony Lindgren 15 năm trước cách đây
mục cha
commit
ad3e6c0b1f
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      arch/arm/mm/mmu.c

+ 2 - 0
arch/arm/mm/mmu.c

@@ -1067,4 +1067,6 @@ void setup_mm_for_reboot(char mode)
 		pmd[1] = __pmd(pmdval + (1 << (PGDIR_SHIFT - 1)));
 		pmd[1] = __pmd(pmdval + (1 << (PGDIR_SHIFT - 1)));
 		flush_pmd_entry(pmd);
 		flush_pmd_entry(pmd);
 	}
 	}
+
+	local_flush_tlb_all();
 }
 }