search for: e888daf

Displaying 2 results from an estimated 2 matches for "e888daf".

Did you mean: e888d1f1
2013 Sep 23
1
[PATCH] xen/x86: add a comment regarding how to get the VCPU ID on HVM
...This is what Linux PVHVM does AFAIK, and also what I've been using in my FreeBSD PVHVM series, but it's not written anywere. --- xen/include/public/vcpu.h | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/xen/include/public/vcpu.h b/xen/include/public/vcpu.h index e888daf..a5ca44d 100644 --- a/xen/include/public/vcpu.h +++ b/xen/include/public/vcpu.h @@ -35,6 +35,9 @@ * @cmd == VCPUOP_??? (VCPU operation). * @vcpuid == VCPU to operate on. * @extra_args == Operation-specific extra arguments (NULL if none). + * + * For x86 HVM domains that use VCPU op...
2013 Sep 23
1
[PATCH v2] xen/x86: add a comment regarding how to get the VCPU ID on HVM
...ng in my FreeBSD PVHVM series, but it's not written anywere. --- Changes since v1: * Reworded the comment as requested by Matt. --- xen/include/public/vcpu.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/xen/include/public/vcpu.h b/xen/include/public/vcpu.h index e888daf..f09367a 100644 --- a/xen/include/public/vcpu.h +++ b/xen/include/public/vcpu.h @@ -35,6 +35,10 @@ * @cmd == VCPUOP_??? (VCPU operation). * @vcpuid == VCPU to operate on. * @extra_args == Operation-specific extra arguments (NULL if none). + * + * For x86 HVM domains that use VCPU o...