From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42717) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1clwpI-0003nz-Bw for qemu-devel@nongnu.org; Thu, 09 Mar 2017 07:05:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1clwpF-0006dN-86 for qemu-devel@nongnu.org; Thu, 09 Mar 2017 07:05:48 -0500 References: <20170309115830.3860-1-pbonzini@redhat.com> From: Laurent Vivier Message-ID: Date: Thu, 9 Mar 2017 13:05:40 +0100 MIME-Version: 1.0 In-Reply-To: <20170309115830.3860-1-pbonzini@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] e1000e: correctly tear down MSI-X memory regions List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini , qemu-devel@nongnu.org Cc: Jason Wang , dgilbert@redhat.com, qemu-stable@nongnu.org On 09/03/2017 12:58, Paolo Bonzini wrote: > MSI-X has been disabled by the time the e1000e device is unrealized, hence > msix_uninit is never called. This causes the object to be leaked, which > shows up as a RAMBlock with empty name when attempting migration. > > Reported-by: Dr. David Alan Gilbert > Cc: Jason Wang > Cc: qemu-stable@nongnu.org > Signed-off-by: Paolo Bonzini > --- > hw/net/e1000e.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/hw/net/e1000e.c b/hw/net/e1000e.c > index b0f429b..6e23493 100644 > --- a/hw/net/e1000e.c > +++ b/hw/net/e1000e.c > @@ -306,7 +306,7 @@ e1000e_init_msix(E1000EState *s) > static void > e1000e_cleanup_msix(E1000EState *s) > { > - if (msix_enabled(PCI_DEVICE(s))) { > + if (msix_present(PCI_DEVICE(s))) { > e1000e_unuse_msix_vectors(s, E1000E_MSIX_VEC_NUM); > msix_uninit(PCI_DEVICE(s), &s->msix, &s->msix); > } > Tested-by: Laurent Vivier