Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.8-rc5 10 lines 199 B view raw
1#include <asm/tlbflush.h> 2 3extern int restore_image(void); 4 5int swsusp_arch_resume(void) 6{ 7 /* Avoid TLB mismatch during and after kernel resume */ 8 local_flush_tlb_all(); 9 return restore_image(); 10}