xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V3] x86/altp2m: add altp2m_vcpu_disable_notify
@ 2018-12-18 15:11 Razvan Cojocaru
  2018-12-24 10:56 ` Andrew Cooper
  2019-01-02 11:50 ` Wei Liu
  0 siblings, 2 replies; 6+ messages in thread
From: Razvan Cojocaru @ 2018-12-18 15:11 UTC (permalink / raw)
  To: xen-devel
  Cc: sstabellini, wei.liu2, Razvan Cojocaru, konrad.wilk,
	George.Dunlap, andrew.cooper3, ian.jackson, tim, julien.grall,
	jbeulich, roger.pau

Allow altp2m users to disable #VE/VMFUNC alone. Currently it is
only possible to disable this functionality when we disable altp2m
completely; #VE/VMFUNC can only be enabled once per altp2m session.

In addition to making things complete, disabling #VE is also a
workaround for CFW116 ("When Virtualization Exceptions are Enabled,
EPT Violations May Generate Erroneous Virtualization Exceptions")
on Xeon E-2100 CPUs.

Signed-off-by: Razvan Cojocaru <rcojocaru@bitdefender.com>

---
Changes since V2:
 - Fixed compilation by completing the removal of all references
   to "pad".

Changes since V1:
 - Updated the patch description to specify E-2100.
 - Made trying to disable #VE when it's already disabled a no-op.
 - Removed leftover uint32_t pad; from struct
   xen_hvm_altp2m_vcpu_disable_notify.
---
 tools/libxc/include/xenctrl.h   |  2 ++
 tools/libxc/xc_altp2m.c         | 22 ++++++++++++++++++++++
 xen/arch/x86/hvm/hvm.c          | 28 ++++++++++++++++++++++++++++
 xen/include/public/hvm/hvm_op.h | 11 ++++++++++-
 4 files changed, 62 insertions(+), 1 deletion(-)

diff --git a/tools/libxc/include/xenctrl.h b/tools/libxc/include/xenctrl.h
index 97ae965..31cdda7 100644
--- a/tools/libxc/include/xenctrl.h
+++ b/tools/libxc/include/xenctrl.h
@@ -1932,6 +1932,8 @@ int xc_altp2m_get_domain_state(xc_interface *handle, uint32_t dom, bool *state);
 int xc_altp2m_set_domain_state(xc_interface *handle, uint32_t dom, bool state);
 int xc_altp2m_set_vcpu_enable_notify(xc_interface *handle, uint32_t domid,
                                      uint32_t vcpuid, xen_pfn_t gfn);
+int xc_altp2m_set_vcpu_disable_notify(xc_interface *handle, uint32_t domid,
+                                      uint32_t vcpuid);
 int xc_altp2m_create_view(xc_interface *handle, uint32_t domid,
                           xenmem_access_t default_access, uint16_t *view_id);
 int xc_altp2m_destroy_view(xc_interface *handle, uint32_t domid,
diff --git a/tools/libxc/xc_altp2m.c b/tools/libxc/xc_altp2m.c
index 844b9f1..f8cd603 100644
--- a/tools/libxc/xc_altp2m.c
+++ b/tools/libxc/xc_altp2m.c
@@ -91,6 +91,28 @@ int xc_altp2m_set_vcpu_enable_notify(xc_interface *handle, uint32_t domid,
     return rc;
 }
 
+int xc_altp2m_set_vcpu_disable_notify(xc_interface *handle, uint32_t domid,
+                                      uint32_t vcpuid)
+{
+    int rc;
+    DECLARE_HYPERCALL_BUFFER(xen_hvm_altp2m_op_t, arg);
+
+    arg = xc_hypercall_buffer_alloc(handle, arg, sizeof(*arg));
+    if ( arg == NULL )
+        return -1;
+
+    arg->version = HVMOP_ALTP2M_INTERFACE_VERSION;
+    arg->cmd = HVMOP_altp2m_vcpu_disable_notify;
+    arg->domain = domid;
+    arg->u.disable_notify.vcpu_id = vcpuid;
+
+    rc = xencall2(handle->xcall, __HYPERVISOR_hvm_op, HVMOP_altp2m,
+		  HYPERCALL_BUFFER_AS_ARG(arg));
+
+    xc_hypercall_buffer_free(handle, arg);
+    return rc;
+}
+
 int xc_altp2m_create_view(xc_interface *handle, uint32_t domid,
                           xenmem_access_t default_access, uint16_t *view_id)
 {
diff --git a/xen/arch/x86/hvm/hvm.c b/xen/arch/x86/hvm/hvm.c
index d64b6b6..ca3cb3f 100644
--- a/xen/arch/x86/hvm/hvm.c
+++ b/xen/arch/x86/hvm/hvm.c
@@ -4485,6 +4485,7 @@ static int do_altp2m_op(
     case HVMOP_altp2m_get_domain_state:
     case HVMOP_altp2m_set_domain_state:
     case HVMOP_altp2m_vcpu_enable_notify:
+    case HVMOP_altp2m_vcpu_disable_notify:
     case HVMOP_altp2m_create_p2m:
     case HVMOP_altp2m_destroy_p2m:
     case HVMOP_altp2m_switch_p2m:
@@ -4602,6 +4603,33 @@ static int do_altp2m_op(
         break;
     }
 
+    case HVMOP_altp2m_vcpu_disable_notify:
+    {
+        struct vcpu *v;
+
+        if ( a.u.disable_notify.vcpu_id >= d->max_vcpus )
+        {
+            rc = -EINVAL;
+            break;
+        }
+
+        if ( !cpu_has_vmx_virt_exceptions )
+        {
+            rc = -EOPNOTSUPP;
+            break;
+        }
+
+        v = d->vcpu[a.u.enable_notify.vcpu_id];
+
+        /* Already disabled, nothing to do. */
+        if ( gfn_eq(vcpu_altp2m(v).veinfo_gfn, INVALID_GFN) )
+            break;
+
+        vcpu_altp2m(v).veinfo_gfn = INVALID_GFN;
+        altp2m_vcpu_update_vmfunc_ve(v);
+        break;
+    }
+
     case HVMOP_altp2m_create_p2m:
         if ( !(rc = p2m_init_next_altp2m(d, &a.u.view.view)) )
             rc = __copy_to_guest(arg, &a, 1) ? -EFAULT : 0;
diff --git a/xen/include/public/hvm/hvm_op.h b/xen/include/public/hvm/hvm_op.h
index 5878a25..c6cd12f 100644
--- a/xen/include/public/hvm/hvm_op.h
+++ b/xen/include/public/hvm/hvm_op.h
@@ -232,6 +232,12 @@ struct xen_hvm_altp2m_vcpu_enable_notify {
 typedef struct xen_hvm_altp2m_vcpu_enable_notify xen_hvm_altp2m_vcpu_enable_notify_t;
 DEFINE_XEN_GUEST_HANDLE(xen_hvm_altp2m_vcpu_enable_notify_t);
 
+struct xen_hvm_altp2m_vcpu_disable_notify {
+    uint32_t vcpu_id;
+};
+typedef struct xen_hvm_altp2m_vcpu_disable_notify xen_hvm_altp2m_vcpu_disable_notify_t;
+DEFINE_XEN_GUEST_HANDLE(xen_hvm_altp2m_vcpu_disable_notify_t);
+
 struct xen_hvm_altp2m_view {
     /* IN/OUT variable */
     uint16_t view;
@@ -304,7 +310,7 @@ struct xen_hvm_altp2m_op {
 /* Get/set the altp2m state for a domain */
 #define HVMOP_altp2m_get_domain_state     1
 #define HVMOP_altp2m_set_domain_state     2
-/* Set the current VCPU to receive altp2m event notifications */
+/* Set a given VCPU to receive altp2m event notifications */
 #define HVMOP_altp2m_vcpu_enable_notify   3
 /* Create a new view */
 #define HVMOP_altp2m_create_p2m           4
@@ -324,6 +330,8 @@ struct xen_hvm_altp2m_op {
 #define HVMOP_altp2m_get_suppress_ve      11
 /* Get the access of a page of memory from a certain view */
 #define HVMOP_altp2m_get_mem_access       12
+/* Disable altp2m event notifications for a given VCPU */
+#define HVMOP_altp2m_vcpu_disable_notify  13
     domid_t domain;
     uint16_t pad1;
     uint32_t pad2;
@@ -338,6 +346,7 @@ struct xen_hvm_altp2m_op {
         struct xen_hvm_altp2m_change_gfn           change_gfn;
         struct xen_hvm_altp2m_set_mem_access_multi set_mem_access_multi;
         struct xen_hvm_altp2m_suppress_ve          suppress_ve;
+        struct xen_hvm_altp2m_vcpu_disable_notify  disable_notify;
         uint8_t pad[64];
     } u;
 };
-- 
2.7.4


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH V3] x86/altp2m: add altp2m_vcpu_disable_notify
  2018-12-18 15:11 [PATCH V3] x86/altp2m: add altp2m_vcpu_disable_notify Razvan Cojocaru
@ 2018-12-24 10:56 ` Andrew Cooper
  2019-01-02 11:50 ` Wei Liu
  1 sibling, 0 replies; 6+ messages in thread
From: Andrew Cooper @ 2018-12-24 10:56 UTC (permalink / raw)
  To: Razvan Cojocaru, xen-devel
  Cc: sstabellini, wei.liu2, konrad.wilk, George.Dunlap, tim,
	ian.jackson, julien.grall, jbeulich, roger.pau

On 18/12/2018 15:11, Razvan Cojocaru wrote:
> Allow altp2m users to disable #VE/VMFUNC alone. Currently it is
> only possible to disable this functionality when we disable altp2m
> completely; #VE/VMFUNC can only be enabled once per altp2m session.
>
> In addition to making things complete, disabling #VE is also a
> workaround for CFW116 ("When Virtualization Exceptions are Enabled,
> EPT Violations May Generate Erroneous Virtualization Exceptions")
> on Xeon E-2100 CPUs.
>
> Signed-off-by: Razvan Cojocaru <rcojocaru@bitdefender.com>

Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH V3] x86/altp2m: add altp2m_vcpu_disable_notify
  2018-12-18 15:11 [PATCH V3] x86/altp2m: add altp2m_vcpu_disable_notify Razvan Cojocaru
  2018-12-24 10:56 ` Andrew Cooper
@ 2019-01-02 11:50 ` Wei Liu
  2019-01-02 12:28   ` Razvan Cojocaru
  2019-01-02 12:29   ` Andrew Cooper
  1 sibling, 2 replies; 6+ messages in thread
From: Wei Liu @ 2019-01-02 11:50 UTC (permalink / raw)
  To: Razvan Cojocaru
  Cc: sstabellini, wei.liu2, konrad.wilk, George.Dunlap,
	andrew.cooper3, ian.jackson, tim, julien.grall, jbeulich,
	xen-devel, roger.pau

On Tue, Dec 18, 2018 at 05:11:44PM +0200, Razvan Cojocaru wrote:
> Allow altp2m users to disable #VE/VMFUNC alone. Currently it is
> only possible to disable this functionality when we disable altp2m
> completely; #VE/VMFUNC can only be enabled once per altp2m session.
> 
> In addition to making things complete, disabling #VE is also a
> workaround for CFW116 ("When Virtualization Exceptions are Enabled,
> EPT Violations May Generate Erroneous Virtualization Exceptions")
> on Xeon E-2100 CPUs.
> 
> Signed-off-by: Razvan Cojocaru <rcojocaru@bitdefender.com>
> 
> ---
> Changes since V2:
>  - Fixed compilation by completing the removal of all references
>    to "pad".
> 
> Changes since V1:
>  - Updated the patch description to specify E-2100.
>  - Made trying to disable #VE when it's already disabled a no-op.
>  - Removed leftover uint32_t pad; from struct
>    xen_hvm_altp2m_vcpu_disable_notify.
> ---
>  tools/libxc/include/xenctrl.h   |  2 ++
>  tools/libxc/xc_altp2m.c         | 22 ++++++++++++++++++++++
>  xen/arch/x86/hvm/hvm.c          | 28 ++++++++++++++++++++++++++++
>  xen/include/public/hvm/hvm_op.h | 11 ++++++++++-
>  4 files changed, 62 insertions(+), 1 deletion(-)
> 
> diff --git a/tools/libxc/include/xenctrl.h b/tools/libxc/include/xenctrl.h
> index 97ae965..31cdda7 100644
> --- a/tools/libxc/include/xenctrl.h
> +++ b/tools/libxc/include/xenctrl.h
> @@ -1932,6 +1932,8 @@ int xc_altp2m_get_domain_state(xc_interface *handle, uint32_t dom, bool *state);
>  int xc_altp2m_set_domain_state(xc_interface *handle, uint32_t dom, bool state);
>  int xc_altp2m_set_vcpu_enable_notify(xc_interface *handle, uint32_t domid,
>                                       uint32_t vcpuid, xen_pfn_t gfn);
> +int xc_altp2m_set_vcpu_disable_notify(xc_interface *handle, uint32_t domid,
> +                                      uint32_t vcpuid);
>  int xc_altp2m_create_view(xc_interface *handle, uint32_t domid,
>                            xenmem_access_t default_access, uint16_t *view_id);
>  int xc_altp2m_destroy_view(xc_interface *handle, uint32_t domid,
> diff --git a/tools/libxc/xc_altp2m.c b/tools/libxc/xc_altp2m.c
> index 844b9f1..f8cd603 100644
> --- a/tools/libxc/xc_altp2m.c
> +++ b/tools/libxc/xc_altp2m.c
> @@ -91,6 +91,28 @@ int xc_altp2m_set_vcpu_enable_notify(xc_interface *handle, uint32_t domid,
>      return rc;
>  }
>  
> +int xc_altp2m_set_vcpu_disable_notify(xc_interface *handle, uint32_t domid,
> +                                      uint32_t vcpuid)
> +{
> +    int rc;
> +    DECLARE_HYPERCALL_BUFFER(xen_hvm_altp2m_op_t, arg);
> +
> +    arg = xc_hypercall_buffer_alloc(handle, arg, sizeof(*arg));
> +    if ( arg == NULL )
> +        return -1;
> +
> +    arg->version = HVMOP_ALTP2M_INTERFACE_VERSION;
> +    arg->cmd = HVMOP_altp2m_vcpu_disable_notify;
> +    arg->domain = domid;
> +    arg->u.disable_notify.vcpu_id = vcpuid;
> +
> +    rc = xencall2(handle->xcall, __HYPERVISOR_hvm_op, HVMOP_altp2m,
> +		  HYPERCALL_BUFFER_AS_ARG(arg));

Tabs here.

With this fixed:

Acked-by: Wei Liu <wei.liu2@citrix.com>

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH V3] x86/altp2m: add altp2m_vcpu_disable_notify
  2019-01-02 11:50 ` Wei Liu
@ 2019-01-02 12:28   ` Razvan Cojocaru
  2019-01-02 12:29   ` Andrew Cooper
  1 sibling, 0 replies; 6+ messages in thread
From: Razvan Cojocaru @ 2019-01-02 12:28 UTC (permalink / raw)
  To: Wei Liu
  Cc: sstabellini, konrad.wilk, George.Dunlap, andrew.cooper3, tim,
	julien.grall, jbeulich, xen-devel, ian.jackson, roger.pau

On 1/2/19 1:50 PM, Wei Liu wrote:
> On Tue, Dec 18, 2018 at 05:11:44PM +0200, Razvan Cojocaru wrote:
>> Allow altp2m users to disable #VE/VMFUNC alone. Currently it is
>> only possible to disable this functionality when we disable altp2m
>> completely; #VE/VMFUNC can only be enabled once per altp2m session.
>>
>> In addition to making things complete, disabling #VE is also a
>> workaround for CFW116 ("When Virtualization Exceptions are Enabled,
>> EPT Violations May Generate Erroneous Virtualization Exceptions")
>> on Xeon E-2100 CPUs.
>>
>> Signed-off-by: Razvan Cojocaru <rcojocaru@bitdefender.com>
>>
>> ---
>> Changes since V2:
>>  - Fixed compilation by completing the removal of all references
>>    to "pad".
>>
>> Changes since V1:
>>  - Updated the patch description to specify E-2100.
>>  - Made trying to disable #VE when it's already disabled a no-op.
>>  - Removed leftover uint32_t pad; from struct
>>    xen_hvm_altp2m_vcpu_disable_notify.
>> ---
>>  tools/libxc/include/xenctrl.h   |  2 ++
>>  tools/libxc/xc_altp2m.c         | 22 ++++++++++++++++++++++
>>  xen/arch/x86/hvm/hvm.c          | 28 ++++++++++++++++++++++++++++
>>  xen/include/public/hvm/hvm_op.h | 11 ++++++++++-
>>  4 files changed, 62 insertions(+), 1 deletion(-)
>>
>> diff --git a/tools/libxc/include/xenctrl.h b/tools/libxc/include/xenctrl.h
>> index 97ae965..31cdda7 100644
>> --- a/tools/libxc/include/xenctrl.h
>> +++ b/tools/libxc/include/xenctrl.h
>> @@ -1932,6 +1932,8 @@ int xc_altp2m_get_domain_state(xc_interface *handle, uint32_t dom, bool *state);
>>  int xc_altp2m_set_domain_state(xc_interface *handle, uint32_t dom, bool state);
>>  int xc_altp2m_set_vcpu_enable_notify(xc_interface *handle, uint32_t domid,
>>                                       uint32_t vcpuid, xen_pfn_t gfn);
>> +int xc_altp2m_set_vcpu_disable_notify(xc_interface *handle, uint32_t domid,
>> +                                      uint32_t vcpuid);
>>  int xc_altp2m_create_view(xc_interface *handle, uint32_t domid,
>>                            xenmem_access_t default_access, uint16_t *view_id);
>>  int xc_altp2m_destroy_view(xc_interface *handle, uint32_t domid,
>> diff --git a/tools/libxc/xc_altp2m.c b/tools/libxc/xc_altp2m.c
>> index 844b9f1..f8cd603 100644
>> --- a/tools/libxc/xc_altp2m.c
>> +++ b/tools/libxc/xc_altp2m.c
>> @@ -91,6 +91,28 @@ int xc_altp2m_set_vcpu_enable_notify(xc_interface *handle, uint32_t domid,
>>      return rc;
>>  }
>>  
>> +int xc_altp2m_set_vcpu_disable_notify(xc_interface *handle, uint32_t domid,
>> +                                      uint32_t vcpuid)
>> +{
>> +    int rc;
>> +    DECLARE_HYPERCALL_BUFFER(xen_hvm_altp2m_op_t, arg);
>> +
>> +    arg = xc_hypercall_buffer_alloc(handle, arg, sizeof(*arg));
>> +    if ( arg == NULL )
>> +        return -1;
>> +
>> +    arg->version = HVMOP_ALTP2M_INTERFACE_VERSION;
>> +    arg->cmd = HVMOP_altp2m_vcpu_disable_notify;
>> +    arg->domain = domid;
>> +    arg->u.disable_notify.vcpu_id = vcpuid;
>> +
>> +    rc = xencall2(handle->xcall, __HYPERVISOR_hvm_op, HVMOP_altp2m,
>> +		  HYPERCALL_BUFFER_AS_ARG(arg));
> 
> Tabs here.

Right, that was copy/pasted from xc_altp2m_set_vcpu_enable_notify() - it
turns out that most function in that source file have the tab problem.
I'll fix them all while at it.

> With this fixed:
> 
> Acked-by: Wei Liu <wei.liu2@citrix.com>

Thanks!


Happy new year,
Razvan

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH V3] x86/altp2m: add altp2m_vcpu_disable_notify
  2019-01-02 11:50 ` Wei Liu
  2019-01-02 12:28   ` Razvan Cojocaru
@ 2019-01-02 12:29   ` Andrew Cooper
  2019-01-02 12:30     ` Razvan Cojocaru
  1 sibling, 1 reply; 6+ messages in thread
From: Andrew Cooper @ 2019-01-02 12:29 UTC (permalink / raw)
  To: Wei Liu, Razvan Cojocaru
  Cc: sstabellini, konrad.wilk, George.Dunlap, tim, ian.jackson,
	julien.grall, jbeulich, xen-devel, roger.pau

On 02/01/2019 11:50, Wei Liu wrote:
> On Tue, Dec 18, 2018 at 05:11:44PM +0200, Razvan Cojocaru wrote:
>> Allow altp2m users to disable #VE/VMFUNC alone. Currently it is
>> only possible to disable this functionality when we disable altp2m
>> completely; #VE/VMFUNC can only be enabled once per altp2m session.
>>
>> In addition to making things complete, disabling #VE is also a
>> workaround for CFW116 ("When Virtualization Exceptions are Enabled,
>> EPT Violations May Generate Erroneous Virtualization Exceptions")
>> on Xeon E-2100 CPUs.
>>
>> Signed-off-by: Razvan Cojocaru <rcojocaru@bitdefender.com>
>>
>> ---
>> Changes since V2:
>>  - Fixed compilation by completing the removal of all references
>>    to "pad".
>>
>> Changes since V1:
>>  - Updated the patch description to specify E-2100.
>>  - Made trying to disable #VE when it's already disabled a no-op.
>>  - Removed leftover uint32_t pad; from struct
>>    xen_hvm_altp2m_vcpu_disable_notify.
>> ---
>>  tools/libxc/include/xenctrl.h   |  2 ++
>>  tools/libxc/xc_altp2m.c         | 22 ++++++++++++++++++++++
>>  xen/arch/x86/hvm/hvm.c          | 28 ++++++++++++++++++++++++++++
>>  xen/include/public/hvm/hvm_op.h | 11 ++++++++++-
>>  4 files changed, 62 insertions(+), 1 deletion(-)
>>
>> diff --git a/tools/libxc/include/xenctrl.h b/tools/libxc/include/xenctrl.h
>> index 97ae965..31cdda7 100644
>> --- a/tools/libxc/include/xenctrl.h
>> +++ b/tools/libxc/include/xenctrl.h
>> @@ -1932,6 +1932,8 @@ int xc_altp2m_get_domain_state(xc_interface *handle, uint32_t dom, bool *state);
>>  int xc_altp2m_set_domain_state(xc_interface *handle, uint32_t dom, bool state);
>>  int xc_altp2m_set_vcpu_enable_notify(xc_interface *handle, uint32_t domid,
>>                                       uint32_t vcpuid, xen_pfn_t gfn);
>> +int xc_altp2m_set_vcpu_disable_notify(xc_interface *handle, uint32_t domid,
>> +                                      uint32_t vcpuid);
>>  int xc_altp2m_create_view(xc_interface *handle, uint32_t domid,
>>                            xenmem_access_t default_access, uint16_t *view_id);
>>  int xc_altp2m_destroy_view(xc_interface *handle, uint32_t domid,
>> diff --git a/tools/libxc/xc_altp2m.c b/tools/libxc/xc_altp2m.c
>> index 844b9f1..f8cd603 100644
>> --- a/tools/libxc/xc_altp2m.c
>> +++ b/tools/libxc/xc_altp2m.c
>> @@ -91,6 +91,28 @@ int xc_altp2m_set_vcpu_enable_notify(xc_interface *handle, uint32_t domid,
>>      return rc;
>>  }
>>  
>> +int xc_altp2m_set_vcpu_disable_notify(xc_interface *handle, uint32_t domid,
>> +                                      uint32_t vcpuid)
>> +{
>> +    int rc;
>> +    DECLARE_HYPERCALL_BUFFER(xen_hvm_altp2m_op_t, arg);
>> +
>> +    arg = xc_hypercall_buffer_alloc(handle, arg, sizeof(*arg));
>> +    if ( arg == NULL )
>> +        return -1;
>> +
>> +    arg->version = HVMOP_ALTP2M_INTERFACE_VERSION;
>> +    arg->cmd = HVMOP_altp2m_vcpu_disable_notify;
>> +    arg->domain = domid;
>> +    arg->u.disable_notify.vcpu_id = vcpuid;
>> +
>> +    rc = xencall2(handle->xcall, __HYPERVISOR_hvm_op, HVMOP_altp2m,
>> +		  HYPERCALL_BUFFER_AS_ARG(arg));
> Tabs here.
>
> With this fixed:
>
> Acked-by: Wei Liu <wei.liu2@citrix.com>

Fixed and committed.

Thanks,

~Andrew

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH V3] x86/altp2m: add altp2m_vcpu_disable_notify
  2019-01-02 12:29   ` Andrew Cooper
@ 2019-01-02 12:30     ` Razvan Cojocaru
  0 siblings, 0 replies; 6+ messages in thread
From: Razvan Cojocaru @ 2019-01-02 12:30 UTC (permalink / raw)
  To: Andrew Cooper, Wei Liu
  Cc: sstabellini, konrad.wilk, George.Dunlap, tim, ian.jackson,
	julien.grall, jbeulich, xen-devel, roger.pau

On 1/2/19 2:29 PM, Andrew Cooper wrote:
> On 02/01/2019 11:50, Wei Liu wrote:
>> On Tue, Dec 18, 2018 at 05:11:44PM +0200, Razvan Cojocaru wrote:
>>> Allow altp2m users to disable #VE/VMFUNC alone. Currently it is
>>> only possible to disable this functionality when we disable altp2m
>>> completely; #VE/VMFUNC can only be enabled once per altp2m session.
>>>
>>> In addition to making things complete, disabling #VE is also a
>>> workaround for CFW116 ("When Virtualization Exceptions are Enabled,
>>> EPT Violations May Generate Erroneous Virtualization Exceptions")
>>> on Xeon E-2100 CPUs.
>>>
>>> Signed-off-by: Razvan Cojocaru <rcojocaru@bitdefender.com>
>>>
>>> ---
>>> Changes since V2:
>>>  - Fixed compilation by completing the removal of all references
>>>    to "pad".
>>>
>>> Changes since V1:
>>>  - Updated the patch description to specify E-2100.
>>>  - Made trying to disable #VE when it's already disabled a no-op.
>>>  - Removed leftover uint32_t pad; from struct
>>>    xen_hvm_altp2m_vcpu_disable_notify.
>>> ---
>>>  tools/libxc/include/xenctrl.h   |  2 ++
>>>  tools/libxc/xc_altp2m.c         | 22 ++++++++++++++++++++++
>>>  xen/arch/x86/hvm/hvm.c          | 28 ++++++++++++++++++++++++++++
>>>  xen/include/public/hvm/hvm_op.h | 11 ++++++++++-
>>>  4 files changed, 62 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/tools/libxc/include/xenctrl.h b/tools/libxc/include/xenctrl.h
>>> index 97ae965..31cdda7 100644
>>> --- a/tools/libxc/include/xenctrl.h
>>> +++ b/tools/libxc/include/xenctrl.h
>>> @@ -1932,6 +1932,8 @@ int xc_altp2m_get_domain_state(xc_interface *handle, uint32_t dom, bool *state);
>>>  int xc_altp2m_set_domain_state(xc_interface *handle, uint32_t dom, bool state);
>>>  int xc_altp2m_set_vcpu_enable_notify(xc_interface *handle, uint32_t domid,
>>>                                       uint32_t vcpuid, xen_pfn_t gfn);
>>> +int xc_altp2m_set_vcpu_disable_notify(xc_interface *handle, uint32_t domid,
>>> +                                      uint32_t vcpuid);
>>>  int xc_altp2m_create_view(xc_interface *handle, uint32_t domid,
>>>                            xenmem_access_t default_access, uint16_t *view_id);
>>>  int xc_altp2m_destroy_view(xc_interface *handle, uint32_t domid,
>>> diff --git a/tools/libxc/xc_altp2m.c b/tools/libxc/xc_altp2m.c
>>> index 844b9f1..f8cd603 100644
>>> --- a/tools/libxc/xc_altp2m.c
>>> +++ b/tools/libxc/xc_altp2m.c
>>> @@ -91,6 +91,28 @@ int xc_altp2m_set_vcpu_enable_notify(xc_interface *handle, uint32_t domid,
>>>      return rc;
>>>  }
>>>  
>>> +int xc_altp2m_set_vcpu_disable_notify(xc_interface *handle, uint32_t domid,
>>> +                                      uint32_t vcpuid)
>>> +{
>>> +    int rc;
>>> +    DECLARE_HYPERCALL_BUFFER(xen_hvm_altp2m_op_t, arg);
>>> +
>>> +    arg = xc_hypercall_buffer_alloc(handle, arg, sizeof(*arg));
>>> +    if ( arg == NULL )
>>> +        return -1;
>>> +
>>> +    arg->version = HVMOP_ALTP2M_INTERFACE_VERSION;
>>> +    arg->cmd = HVMOP_altp2m_vcpu_disable_notify;
>>> +    arg->domain = domid;
>>> +    arg->u.disable_notify.vcpu_id = vcpuid;
>>> +
>>> +    rc = xencall2(handle->xcall, __HYPERVISOR_hvm_op, HVMOP_altp2m,
>>> +		  HYPERCALL_BUFFER_AS_ARG(arg));
>> Tabs here.
>>
>> With this fixed:
>>
>> Acked-by: Wei Liu <wei.liu2@citrix.com>
> 
> Fixed and committed.

Oh, thanks! Nevermind my previous reply then. :)


Thanks,
Razvan

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-01-02 12:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-18 15:11 [PATCH V3] x86/altp2m: add altp2m_vcpu_disable_notify Razvan Cojocaru
2018-12-24 10:56 ` Andrew Cooper
2019-01-02 11:50 ` Wei Liu
2019-01-02 12:28   ` Razvan Cojocaru
2019-01-02 12:29   ` Andrew Cooper
2019-01-02 12:30     ` Razvan Cojocaru

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).