Displaying 2 results from an estimated 2 matches for "sal_data".
Did you mean:
sa_data
2008 Dec 02
0
[PATCH] Fix Xen panic with oprofile
...lia@hp.com>
diff -r 18eff064c628 xen/arch/ia64/xen/domain.c
--- a/xen/arch/ia64/xen/domain.c Fri Aug 22 10:45:19 2008 +0100
+++ b/xen/arch/ia64/xen/domain.c Mon Dec 01 23:52:14 2008 -0800
@@ -1673,9 +1673,6 @@ int domain_relinquish_resources(struct d
if (is_hvm_domain(d) && d->arch.sal_data)
xfree(d->arch.sal_data);
- /* Free page used by xen oprofile buffer */
- free_xenoprof_pages(d);
-
return 0;
}
diff -r 18eff064c628 xen/arch/x86/domain.c
--- a/xen/arch/x86/domain.c Fri Aug 22 10:45:19 2008 +0100
+++ b/xen/arch/x86/domain.c Mon Dec 01 23:52:14 2008 -0800
@@ -1817,9 +181...
2008 Apr 01
0
[16/18]KVM:IA64 : Add kvm sal/pal virtulization support.V9
...with information
about what the error is?
> +static void set_sal_result(struct kvm_vcpu *vcpu,
> + struct sal_ret_values result) {
> + struct exit_ctl_data *p;
> +
> + p = kvm_get_exit_data(vcpu);
> + if (p && p->exit_reason == EXIT_REASON_SAL_CALL) {
> + p->u.sal_data.ret = result;
> + return ;
> + }
> + printk(KERN_WARNING"Error occurs!!!\n");
I love this error message :-) Seriously though, please make it say
where it is and what has been detected.
Cheers,
Jes