mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 19:56:45 +07:00
11 lines
199 B
C
11 lines
199 B
C
|
#include <asm/tlbflush.h>
|
||
|
|
||
|
extern int restore_image(void);
|
||
|
|
||
|
int swsusp_arch_resume(void)
|
||
|
{
|
||
|
/* Avoid TLB mismatch during and after kernel resume */
|
||
|
local_flush_tlb_all();
|
||
|
return restore_image();
|
||
|
}
|