Displaying 2 results from an estimated 2 matches for "panic_vm".
2008 Mar 28
0
[14/17][PATCH] kvm/ia64: Add guest interruption injection support.
...u64 isr, u64 iim,
>+ u64 vec, REGS *regs)
>+{
>+ u64 vector;
>+ int status ;
>+ VCPU *vcpu = current_vcpu;
>+ u64 vpsr = VCPU(vcpu, vpsr);
>+
>+ vector = vec2off[vec];
>+
>+ if (!(vpsr & IA64_PSR_IC) && (vector !=
>IA64_DATA_NESTED_TLB_VECTOR)) {
>+ panic_vm(vcpu);
>+ return;
>+ }
>+
>+ switch (vec) {
>+ case 32:
I want to add a comment of IA64_FP_FAULT_VECTOR.
>+ status = vmm_handle_fpu_swa(1, regs, isr);
>+ if (!status) {
>+ vcpu_increment_iip(vcpu);
>+ return;
>+ } else if (-EAGAIN == status)
>+ return;
&g...
2008 Mar 28
0
[14/17][PATCH] kvm/ia64: Add guest interruption injection support.
...u64 isr, u64 iim,
>+ u64 vec, REGS *regs)
>+{
>+ u64 vector;
>+ int status ;
>+ VCPU *vcpu = current_vcpu;
>+ u64 vpsr = VCPU(vcpu, vpsr);
>+
>+ vector = vec2off[vec];
>+
>+ if (!(vpsr & IA64_PSR_IC) && (vector !=
>IA64_DATA_NESTED_TLB_VECTOR)) {
>+ panic_vm(vcpu);
>+ return;
>+ }
>+
>+ switch (vec) {
>+ case 32:
I want to add a comment of IA64_FP_FAULT_VECTOR.
>+ status = vmm_handle_fpu_swa(1, regs, isr);
>+ if (!status) {
>+ vcpu_increment_iip(vcpu);
>+ return;
>+ } else if (-EAGAIN == status)
>+ return;
&g...