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

suspend.h (496B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifdef CONFIG_X86_32
      3# include <asm/suspend_32.h>
      4#else
      5# include <asm/suspend_64.h>
      6#endif
      7extern unsigned long restore_jump_address __visible;
      8extern unsigned long jump_address_phys;
      9extern unsigned long restore_cr3 __visible;
     10extern unsigned long temp_pgt __visible;
     11extern unsigned long relocated_restore_code __visible;
     12extern int relocate_restore_code(void);
     13/* Defined in hibernate_asm_32/64.S */
     14extern asmlinkage __visible int restore_image(void);