From: Alex Williamson Date: Thu, 20 Dec 2007 16:40:33 +0000 (-0700) Subject: [IA64] Fix missing put_domain in XEN_DOMCTL_set_opt_feature X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14445^2~103 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b2e6c832d9b7d6130a36256f40984b6d510f731c;p=xen.git [IA64] Fix missing put_domain in XEN_DOMCTL_set_opt_feature Signed-off-by: Alex Williamson --- diff --git a/xen/arch/ia64/xen/dom0_ops.c b/xen/arch/ia64/xen/dom0_ops.c index 0d52d50192..a37eef1e83 100644 --- a/xen/arch/ia64/xen/dom0_ops.c +++ b/xen/arch/ia64/xen/dom0_ops.c @@ -354,6 +354,7 @@ long arch_do_domctl(xen_domctl_t *op, XEN_GUEST_HANDLE(xen_domctl_t) u_domctl) } ret = domain_opt_feature(d, optf); + put_domain(d); } break;