hibernate.c 199 B

12345678910
  1. #include <asm/tlbflush.h>
  2. extern int restore_image(void);
  3. int swsusp_arch_resume(void)
  4. {
  5. /* Avoid TLB mismatch during and after kernel resume */
  6. local_flush_tlb_all();
  7. return restore_image();
  8. }