projects
/
linux-2.6
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
x86, UV: Fix macros for accessing large node numbers
[linux-2.6]
/
arch
/
x86
/
kvm
/
mmu.h
diff --git
a/arch/x86/kvm/mmu.h
b/arch/x86/kvm/mmu.h
index
eaab214
..
3494a2f
100644
(file)
--- a/
arch/x86/kvm/mmu.h
+++ b/
arch/x86/kvm/mmu.h
@@
-75,4
+75,9
@@
static inline int is_paging(struct kvm_vcpu *vcpu)
return vcpu->arch.cr0 & X86_CR0_PG;
}
+static inline int is_present_pte(unsigned long pte)
+{
+ return pte & PT_PRESENT_MASK;
+}
+
#endif