Displaying 2 results from an estimated 2 matches for "vec2off".
Did you mean:
pecoff
2008 Mar 28
0
[14/17][PATCH] kvm/ia64: Add guest interruption injection support.
...;regs->pr, ®s->cr_ifs, regs);
>+ return ret.status;
>+}
>+
>+void reflect_interruption(u64 ifa, 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);
>+...
2008 Mar 28
0
[14/17][PATCH] kvm/ia64: Add guest interruption injection support.
...;regs->pr, ®s->cr_ifs, regs);
>+ return ret.status;
>+}
>+
>+void reflect_interruption(u64 ifa, 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);
>+...