Kyle Swenson | 8d8f654 | 2021-03-15 11:02:55 -0600 | [diff] [blame^] | 1 | #include <asm/tlbflush.h> |
2 | |||||
3 | extern int restore_image(void); | ||||
4 | |||||
5 | int swsusp_arch_resume(void) | ||||
6 | { | ||||
7 | /* Avoid TLB mismatch during and after kernel resume */ | ||||
8 | local_flush_tlb_all(); | ||||
9 | return restore_image(); | ||||
10 | } |