Displaying 2 results from an estimated 2 matches for "relinquish_vcpu_resource".
Did you mean:
relinquish_vcpu_resources
2007 Jan 19
2
[Xen-ia64-devel][PATCH] Fix Xen crash when creating VTI in some machines.
Xend will do a hypercall to destory domain when creating VTI guest fail.
If "is_vti"
not be set at this point, HV will call relinquish_vcpu_resource() which
belong
to domU. It may try to free a NULL pointer, so dom0 crash.
This patch fix it.
Signed-off-by, Zhang Xin < xing.z.zhang@intel.com >
Good good study,day day up ! ^_^
-Wing(zhang xin)
OTC,Intel Corporation
_______________________________________________
Xen-deve...
2007 Aug 28
6
[PATCH] Make XEN_DOMCTL_destroydomain hypercall continuable.
...-ia64/domain.h
--- a/xen/include/asm-ia64/domain.h Fri Aug 24 16:32:56 2007 +0100
+++ b/xen/include/asm-ia64/domain.h Tue Aug 28 13:06:41 2007 +0900
@@ -18,7 +18,6 @@ struct tlb_track;
struct tlb_track;
#endif
-extern void domain_relinquish_resources(struct domain *);
struct vcpu;
extern void relinquish_vcpu_resources(struct vcpu *v);
extern void vcpu_share_privregs_with_guest(struct vcpu *v);
diff -r 58d131f1fb35 -r 2c9db26f1d0e xen/include/xen/domain.h
--- a/xen/include/xen/domain.h Fri Aug 24 16:32:56 2007 +0100
+++ b/xen/include/xen/domain.h Tue Aug 28 13:06:41 2007 +0900
@@ -45,7 +45,7 @@ int arch_set_inf...