repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
x86/mm/pat: Don't report PAT on CPUs that don't support it
[linux/fpc-iii.git]
/
arch
/
mips
/
power
/
hibernate.c
blob
19a9af68bcdb10aef723068dc84413cc1677cac4
1
#include <asm/tlbflush.h>
2
3
extern
int
restore_image
(
void
);
4
5
int
swsusp_arch_resume
(
void
)
6
{
7
/* Avoid TLB mismatch during and after kernel resume */
8
local_flush_tlb_all
();
9
return
restore_image
();
10
}