|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen staging-4.19] x86/emul: Rearrange the logic in hvmemul_{read,write}_cr()
commit 7ef9a36a68ca966562564f9a971670651e51d14b
Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
AuthorDate: Thu Mar 27 15:05:35 2025 +0100
Commit: Jan Beulich <jbeulich@xxxxxxxx>
CommitDate: Thu Mar 27 15:05:35 2025 +0100
x86/emul: Rearrange the logic in hvmemul_{read,write}_cr()
In hvmemul_read_cr(), make the TRACE()/X86EMUL_OKAY path common in
preparation
for adding a %cr8 case. Use a local 'val' variable instead of always
operating on a deferenced pointer.
In both, calculate curr once.
No functional change.
Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
Reviewed-by: Jan Beulich <jbeulich@xxxxxxxx>
master commit: b7264a15c28d30bb994ec9e58eba38932be231ec
master date: 2025-03-26 11:54:59 +0000
---
xen/arch/x86/hvm/emulate.c | 24 ++++++++++++++++--------
1 file changed, 16 insertions(+), 8 deletions(-)
diff --git a/xen/arch/x86/hvm/emulate.c b/xen/arch/x86/hvm/emulate.c
index abc4f5f261..cb071be586 100644
--- a/xen/arch/x86/hvm/emulate.c
+++ b/xen/arch/x86/hvm/emulate.c
@@ -2294,23 +2294,30 @@ static int cf_check hvmemul_write_io(
static int cf_check hvmemul_read_cr(
unsigned int reg,
- unsigned long *val,
+ unsigned long *pval,
struct x86_emulate_ctxt *ctxt)
{
+ struct vcpu *curr = current;
+ unsigned long val;
+
switch ( reg )
{
case 0:
case 2:
case 3:
case 4:
- *val = current->arch.hvm.guest_cr[reg];
- TRACE(TRC_HVM_CR_READ64, reg, *val, *val >> 32);
- return X86EMUL_OKAY;
- default:
+ val = curr->arch.hvm.guest_cr[reg];
break;
+
+ default:
+ return X86EMUL_UNHANDLEABLE;
}
- return X86EMUL_UNHANDLEABLE;
+ TRACE(TRC_HVM_CR_READ64, reg, val, val >> 32);
+
+ *pval = val;
+
+ return X86EMUL_OKAY;
}
static int cf_check hvmemul_write_cr(
@@ -2318,6 +2325,7 @@ static int cf_check hvmemul_write_cr(
unsigned long val,
struct x86_emulate_ctxt *ctxt)
{
+ struct vcpu *curr = current;
int rc;
TRACE(TRC_HVM_CR_WRITE64, reg, val, val >> 32);
@@ -2328,13 +2336,13 @@ static int cf_check hvmemul_write_cr(
break;
case 2:
- current->arch.hvm.guest_cr[2] = val;
+ curr->arch.hvm.guest_cr[2] = val;
rc = X86EMUL_OKAY;
break;
case 3:
{
- bool noflush = hvm_pcid_enabled(current) && (val & X86_CR3_NOFLUSH);
+ bool noflush = hvm_pcid_enabled(curr) && (val & X86_CR3_NOFLUSH);
if ( noflush )
val &= ~X86_CR3_NOFLUSH;
--
generated by git-patchbot for /home/xen/git/xen.git#staging-4.19
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |