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 v6.3-rc7 11 lines 235 B view raw
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}