|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH for-4.22] x86/hvm: Partially revert ("xen/mem_access: wrap memory access when VM_EVENT=n")
It is erroneous to check current like this. e.g. Dom0 does not have VM_EVENT
active when it's introspecting domUs.
The use of vm_event_is_enabled() is only for the IS_ENABLED(CONFIG_VM_EVENT)
short circut, so just use that directly.
Reported-by: Hady Azzam <hadyazzam@xxxxxxxxxxxxxx>
Fixes: b18e38e42da6 ("xen/mem_access: wrap memory access when VM_EVENT=n")
Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
---
CC: Jan Beulich <jbeulich@xxxxxxxx>
CC: Roger Pau Monné <roger.pau@xxxxxxxxxx>
CC: Teddy Astie <teddy.astie@xxxxxxxxxx>
CC: Hady Azzam <hadyazzam@xxxxxxxxxxxxxx>
CC: Tamas K Lengyel <tamas@xxxxxxxxxxxxx>
CC: Jason Andryuk <jason.andryuk@xxxxxxx>
CC: Penny Zheng <Penny.Zheng@xxxxxxx>
CC: Oleksii Kurochko <oleksii.kurochko@xxxxxxxxx>
For 4.22. This is a regression vs 4.21.
Only compile tested.
---
xen/arch/x86/hvm/hvm.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/xen/arch/x86/hvm/hvm.c b/xen/arch/x86/hvm/hvm.c
index f759a397c557..cbcef18449ee 100644
--- a/xen/arch/x86/hvm/hvm.c
+++ b/xen/arch/x86/hvm/hvm.c
@@ -4789,7 +4789,7 @@ static int do_altp2m_op(
break;
case HVMOP_altp2m_set_mem_access:
- if ( !vm_event_is_enabled(current) )
+ if ( !IS_ENABLED(CONFIG_VM_EVENT) )
{
rc = -EOPNOTSUPP;
break;
@@ -4804,7 +4804,7 @@ static int do_altp2m_op(
break;
case HVMOP_altp2m_set_mem_access_multi:
- if ( !vm_event_is_enabled(current) )
+ if ( !IS_ENABLED(CONFIG_VM_EVENT) )
{
rc = -EOPNOTSUPP;
break;
@@ -4841,7 +4841,7 @@ static int do_altp2m_op(
break;
case HVMOP_altp2m_get_mem_access:
- if ( !vm_event_is_enabled(current) )
+ if ( !IS_ENABLED(CONFIG_VM_EVENT) )
{
rc = -EOPNOTSUPP;
break;
base-commit: 3c4e804607a5a1254b168d88572cb9ec311543a9
--
2.39.5
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |