diff options
| author | Huacai Chen <chenhc@lemote.com> | 2015-03-28 22:54:05 -0400 |
|---|---|---|
| committer | Ralf Baechle <ralf@linux-mips.org> | 2015-04-10 09:41:52 -0400 |
| commit | a843d00d038b11267279e3b5388222320f9ddc1d (patch) | |
| tree | 130a3b0c560f838bf77ce9917c6563b78e2122ce /arch/mips | |
| parent | 90db024f140d0d6ad960cc5f090e3c8ed890ca55 (diff) | |
MIPS: Hibernate: flush TLB entries earlier
We found that TLB mismatch not only happens after kernel resume, but
also happens during snapshot restore. So move it to the beginning of
swsusp_arch_suspend().
Signed-off-by: Huacai Chen <chenhc@lemote.com>
Cc: <stable@vger.kernel.org>
Cc: Steven J. Hill <Steven.Hill@imgtec.com>
Cc: linux-mips@linux-mips.org
Cc: Fuxin Zhang <zhangfx@lemote.com>
Cc: Zhangjin Wu <wuzhangjin@gmail.com>
Cc: stable@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/9621/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
| -rw-r--r-- | arch/mips/power/hibernate.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/mips/power/hibernate.S b/arch/mips/power/hibernate.S index 32a7c828f073..e7567c8a9e79 100644 --- a/arch/mips/power/hibernate.S +++ b/arch/mips/power/hibernate.S | |||
| @@ -30,6 +30,8 @@ LEAF(swsusp_arch_suspend) | |||
| 30 | END(swsusp_arch_suspend) | 30 | END(swsusp_arch_suspend) |
| 31 | 31 | ||
| 32 | LEAF(swsusp_arch_resume) | 32 | LEAF(swsusp_arch_resume) |
| 33 | /* Avoid TLB mismatch during and after kernel resume */ | ||
| 34 | jal local_flush_tlb_all | ||
| 33 | PTR_L t0, restore_pblist | 35 | PTR_L t0, restore_pblist |
| 34 | 0: | 36 | 0: |
| 35 | PTR_L t1, PBE_ADDRESS(t0) /* source */ | 37 | PTR_L t1, PBE_ADDRESS(t0) /* source */ |
| @@ -43,7 +45,6 @@ LEAF(swsusp_arch_resume) | |||
| 43 | bne t1, t3, 1b | 45 | bne t1, t3, 1b |
| 44 | PTR_L t0, PBE_NEXT(t0) | 46 | PTR_L t0, PBE_NEXT(t0) |
| 45 | bnez t0, 0b | 47 | bnez t0, 0b |
| 46 | jal local_flush_tlb_all /* Avoid TLB mismatch after kernel resume */ | ||
| 47 | PTR_LA t0, saved_regs | 48 | PTR_LA t0, saved_regs |
| 48 | PTR_L ra, PT_R31(t0) | 49 | PTR_L ra, PT_R31(t0) |
| 49 | PTR_L sp, PT_R29(t0) | 50 | PTR_L sp, PT_R29(t0) |
