From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35347) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cZM2Z-0008OZ-NM for qemu-devel@nongnu.org; Thu, 02 Feb 2017 13:23:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cZM2W-0000jo-IE for qemu-devel@nongnu.org; Thu, 02 Feb 2017 13:23:27 -0500 Received: from mail.kernel.org ([198.145.29.136]:42286) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cZM2W-0000il-Ct for qemu-devel@nongnu.org; Thu, 02 Feb 2017 13:23:24 -0500 Date: Thu, 2 Feb 2017 10:23:20 -0800 (PST) From: Stefano Stabellini In-Reply-To: Message-ID: References: <20170201065202.7746-1-jgross@suse.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Re: [Qemu-devel] [PATCH v2] xen: use qdev_unplug() instead of g_free() in xen_pv_find_xendev() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Juergen Gross Cc: Peter Maydell , Stefano Stabellini , QEMU Developers , xen-devel@lists.xenproject.org, Anthony PERARD , Gerd Hoffmann On Thu, 2 Feb 2017, Juergen Gross wrote: > On 01/02/17 21:20, Peter Maydell wrote: > > On 1 February 2017 at 19:37, Stefano Stabellini wrote: > >> Hi Peter, > >> > >> do you think this is acceptable? > > > > The set of operations here is basically what I suggested > > in review of v1, so I think it is the right thing. > > OTOH this is a bit of an odd corner of the QOM model > > so it might be worth doing some testing to make sure > > the reference counts are doing what you (I) expect and > > that the object does get correctly freed both in the > > error-handling path here and when the device is > > unplugged via xen_pv_del_xendev(). > > I've used my_g_free() printing a log message when called instead of > g_free() in a test. I could verify it has been called when the > device was unplugged. This test covered xen_pv_del_xendev() and > an error handling path. Thanks Juergen for testing. I'll commit shortly.