search for: kvm_get_pal_call_data

Displaying 1 result from an estimated 1 matches for "kvm_get_pal_call_data".

2008 Apr 01
0
[16/18]KVM:IA64 : Add kvm sal/pal virtulization support.V9
...pal calls would be traped to kvm for virtulization > from guest firmware. > Signed-off-by: Xiantao Zhang <xiantao.zhang at intel.com> > --- > arch/ia64/kvm/kvm_fw.c | 500 Hi Xiantao, A few more comments: > --- /dev/null > +++ b/arch/ia64/kvm/kvm_fw.c > +static void kvm_get_pal_call_data(struct kvm_vcpu *vcpu, > + u64 *gr28, u64 *gr29, u64 *gr30, u64 *gr31) { > + struct exit_ctl_data *p; > + > + if (vcpu) { > + p = &vcpu->arch.exit_data; > + if (p->exit_reason == EXIT_REASON_PAL_CALL) { > + *gr28 = p->u.pal_data.gr28; > + *gr29 = p->u....