diff options
-rw-r--r-- | arch/x86/include/asm/e820/api.h | 1 | ||||
-rw-r--r-- | arch/x86/kernel/e820.c | 18 | ||||
-rw-r--r-- | arch/x86/kvm/mmu.c | 5 |
3 files changed, 20 insertions, 4 deletions
diff --git a/arch/x86/include/asm/e820/api.h b/arch/x86/include/asm/e820/api.h index 62be73b23d5c..e8f58ddd06d9 100644 --- a/arch/x86/include/asm/e820/api.h +++ b/arch/x86/include/asm/e820/api.h | |||
@@ -10,6 +10,7 @@ extern struct e820_table *e820_table_firmware; | |||
10 | 10 | ||
11 | extern unsigned long pci_mem_start; | 11 | extern unsigned long pci_mem_start; |
12 | 12 | ||
13 | extern bool e820__mapped_raw_any(u64 start, u64 end, enum e820_type type); | ||
13 | extern bool e820__mapped_any(u64 start, u64 end, enum e820_type type); | 14 | extern bool e820__mapped_any(u64 start, u64 end, enum e820_type type); |
14 | extern bool e820__mapped_all(u64 start, u64 end, enum e820_type type); | 15 | extern bool e820__mapped_all(u64 start, u64 end, enum e820_type type); |
15 | 16 | ||
diff --git a/arch/x86/kernel/e820.c b/arch/x86/kernel/e820.c index 2879e234e193..76dd605ee2a3 100644 --- a/arch/x86/kernel/e820.c +++ b/arch/x86/kernel/e820.c | |||
@@ -73,12 +73,13 @@ EXPORT_SYMBOL(pci_mem_start); | |||
73 | * This function checks if any part of the range <start,end> is mapped | 73 | * This function checks if any part of the range <start,end> is mapped |
74 | * with type. | 74 | * with type. |
75 | */ | 75 | */ |
76 | bool e820__mapped_any(u64 start, u64 end, enum e820_type type) | 76 | static bool _e820__mapped_any(struct e820_table *table, |
77 | u64 start, u64 end, enum e820_type type) | ||
77 | { | 78 | { |
78 | int i; | 79 | int i; |
79 | 80 | ||
80 | for (i = 0; i < e820_table->nr_entries; i++) { | 81 | for (i = 0; i < table->nr_entries; i++) { |
81 | struct e820_entry *entry = &e820_table->entries[i]; | 82 | struct e820_entry *entry = &table->entries[i]; |
82 | 83 | ||
83 | if (type && entry->type != type) | 84 | if (type && entry->type != type) |
84 | continue; | 85 | continue; |
@@ -88,6 +89,17 @@ bool e820__mapped_any(u64 start, u64 end, enum e820_type type) | |||
88 | } | 89 | } |
89 | return 0; | 90 | return 0; |
90 | } | 91 | } |
92 | |||
93 | bool e820__mapped_raw_any(u64 start, u64 end, enum e820_type type) | ||
94 | { | ||
95 | return _e820__mapped_any(e820_table_firmware, start, end, type); | ||
96 | } | ||
97 | EXPORT_SYMBOL_GPL(e820__mapped_raw_any); | ||
98 | |||
99 | bool e820__mapped_any(u64 start, u64 end, enum e820_type type) | ||
100 | { | ||
101 | return _e820__mapped_any(e820_table, start, end, type); | ||
102 | } | ||
91 | EXPORT_SYMBOL_GPL(e820__mapped_any); | 103 | EXPORT_SYMBOL_GPL(e820__mapped_any); |
92 | 104 | ||
93 | /* | 105 | /* |
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c index e10962dfc203..b1f6451022e5 100644 --- a/arch/x86/kvm/mmu.c +++ b/arch/x86/kvm/mmu.c | |||
@@ -44,6 +44,7 @@ | |||
44 | #include <asm/page.h> | 44 | #include <asm/page.h> |
45 | #include <asm/pat.h> | 45 | #include <asm/pat.h> |
46 | #include <asm/cmpxchg.h> | 46 | #include <asm/cmpxchg.h> |
47 | #include <asm/e820/api.h> | ||
47 | #include <asm/io.h> | 48 | #include <asm/io.h> |
48 | #include <asm/vmx.h> | 49 | #include <asm/vmx.h> |
49 | #include <asm/kvm_page_track.h> | 50 | #include <asm/kvm_page_track.h> |
@@ -2892,7 +2893,9 @@ static bool kvm_is_mmio_pfn(kvm_pfn_t pfn) | |||
2892 | */ | 2893 | */ |
2893 | (!pat_enabled() || pat_pfn_immune_to_uc_mtrr(pfn)); | 2894 | (!pat_enabled() || pat_pfn_immune_to_uc_mtrr(pfn)); |
2894 | 2895 | ||
2895 | return true; | 2896 | return !e820__mapped_raw_any(pfn_to_hpa(pfn), |
2897 | pfn_to_hpa(pfn + 1) - 1, | ||
2898 | E820_TYPE_RAM); | ||
2896 | } | 2899 | } |
2897 | 2900 | ||
2898 | /* Bits which may be returned by set_spte() */ | 2901 | /* Bits which may be returned by set_spte() */ |