cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

hibernate.c (235B)


      1// SPDX-License-Identifier: GPL-2.0
      2#include <asm/tlbflush.h>
      3
      4extern int restore_image(void);
      5
      6int swsusp_arch_resume(void)
      7{
      8	/* Avoid TLB mismatch during and after kernel resume */
      9	local_flush_tlb_all();
     10	return restore_image();
     11}