|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen staging] x86: PCID is unused when !PV
commit dffb6c488a27c1952e39d6bd264bf5e28da50f1a
Author: Jan Beulich <jbeulich@xxxxxxxx>
AuthorDate: Wed Sep 18 15:21:51 2019 +0200
Commit: Jan Beulich <jbeulich@xxxxxxxx>
CommitDate: Wed Sep 18 15:21:51 2019 +0200
x86: PCID is unused when !PV
This allows in particular some streamlining of the TLB flushing code
paths.
Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx>
Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
---
xen/arch/x86/flushtlb.c | 5 +++++
xen/include/asm-x86/processor.h | 6 +++++-
xen/include/asm-x86/pv/domain.h | 5 +++++
3 files changed, 15 insertions(+), 1 deletion(-)
diff --git a/xen/arch/x86/flushtlb.c b/xen/arch/x86/flushtlb.c
index 5ecce9c44a..c1ae0d9467 100644
--- a/xen/arch/x86/flushtlb.c
+++ b/xen/arch/x86/flushtlb.c
@@ -24,6 +24,11 @@
#define WRAP_MASK (0x000003FFU)
#endif
+#ifndef CONFIG_PV
+# undef X86_CR4_PCIDE
+# define X86_CR4_PCIDE 0
+#endif
+
u32 tlbflush_clock = 1U;
DEFINE_PER_CPU(u32, tlbflush_time);
diff --git a/xen/include/asm-x86/processor.h b/xen/include/asm-x86/processor.h
index e25c3223e4..c6fc1987a1 100644
--- a/xen/include/asm-x86/processor.h
+++ b/xen/include/asm-x86/processor.h
@@ -289,7 +289,7 @@ static inline unsigned long cr3_pa(unsigned long cr3)
static inline unsigned int cr3_pcid(unsigned long cr3)
{
- return cr3 & X86_CR3_PCID_MASK;
+ return IS_ENABLED(CONFIG_PV) ? cr3 & X86_CR3_PCID_MASK : 0;
}
static inline unsigned long read_cr4(void)
@@ -301,8 +301,12 @@ static inline void write_cr4(unsigned long val)
{
struct cpu_info *info = get_cpu_info();
+#ifdef CONFIG_PV
/* No global pages in case of PCIDs enabled! */
ASSERT(!(val & X86_CR4_PGE) || !(val & X86_CR4_PCIDE));
+#else
+ ASSERT(!(val & X86_CR4_PCIDE));
+#endif
/*
* On hardware supporting FSGSBASE, the value in %cr4 is the kernel's
diff --git a/xen/include/asm-x86/pv/domain.h b/xen/include/asm-x86/pv/domain.h
index 99a0fe7b6a..7a69bfb303 100644
--- a/xen/include/asm-x86/pv/domain.h
+++ b/xen/include/asm-x86/pv/domain.h
@@ -50,8 +50,13 @@
*/
static inline unsigned long get_pcid_bits(const struct vcpu *v, bool is_xpti)
{
+#ifdef CONFIG_PV
return X86_CR3_NOFLUSH | (is_xpti ? PCID_PV_XPTI : 0) |
((v->arch.flags & TF_kernel_mode) ? PCID_PV_PRIV : PCID_PV_USER);
+#else
+ ASSERT_UNREACHABLE();
+ return 0;
+#endif
}
#ifdef CONFIG_PV
--
generated by git-patchbot for /home/xen/git/xen.git#staging
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/xen-changelog
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |