Re: [kvm-devel] [PATCH 3/4] HYPERCALL] Update exit reason for vmcall

2007-08-27 Thread Anthony Liguori
On Fri, 2007-08-24 at 16:58 -0700, Dor Laor wrote: > diff --git a/drivers/kvm/svm.c b/drivers/kvm/svm.c > index cc674bf..9bfd11e 100644 > --- a/drivers/kvm/svm.c > +++ b/drivers/kvm/svm.c > @@ -1022,6 +1022,11 @@ static int halt_interception(struct vcpu_svm > *svm, struct kvm_run *kvm_run) > > s

Re: [kvm-devel] [PATCH 3/4] HYPERCALL] Update exit reason for vmcall

2007-08-25 Thread Avi Kivity
Dor Laor wrote: > It provides user space hypercall handling. > Also add cpl == 0 check for svm, htat unlike VT let software decide. > > Separate patches please. -- Do not meddle in the internals of kernels, for they are subtle and quick to panic. ---

[kvm-devel] [PATCH 3/4] HYPERCALL] Update exit reason for vmcall

2007-08-24 Thread Dor Laor
It provides user space hypercall handling. Also add cpl == 0 check for svm, htat unlike VT let software decide. Signed-off-by: Dor Laor <[EMAIL PROTECTED]> --- drivers/kvm/kvm_main.c |2 ++ drivers/kvm/svm.c |5 + 2 files changed, 7 insertions(+), 0 deletions(-) diff --git a/dri