On 11.04.2010, at 23:40, Alexander Graf wrote:

> 
> /* Either adds offset n to the instruction counter or takes the next
>    instruction pointer from the vmcb if the CPU supports it */
> 
> static u64 svm_next_rip(struct kvm_vcpu *vcpu, int add)
> {
>        if (svm->vmcb->control.next_rip != 0)

In fact, that if should probably be:

        if (svm_has(SVM_FEATURE_NRIP))


Alex
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to