From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51409) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YECvp-0005Za-H6 for qemu-devel@nongnu.org; Thu, 22 Jan 2015 03:16:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YECvm-0002CP-7S for qemu-devel@nongnu.org; Thu, 22 Jan 2015 03:16:01 -0500 Received: from mail-wi0-f181.google.com ([209.85.212.181]:41423) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YECvm-0002CK-1I for qemu-devel@nongnu.org; Thu, 22 Jan 2015 03:15:58 -0500 Received: by mail-wi0-f181.google.com with SMTP id fb4so882425wid.2 for ; Thu, 22 Jan 2015 00:15:57 -0800 (PST) Message-ID: <54C0B156.3080608@linaro.org> Date: Thu, 22 Jan 2015 09:14:14 +0100 From: Eric Auger MIME-Version: 1.0 References: <1421898608-10313-1-git-send-email-chen.fan.fnst@cn.fujitsu.com> In-Reply-To: <1421898608-10313-1-git-send-email-chen.fan.fnst@cn.fujitsu.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] vfio: fix wrong initialize vfio_group_list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Chen Fan , qemu-devel@nongnu.org Cc: Alex Williamson Hi Chen, thanks for correcting this mistake I introduced when moving code from pci to common. Best Regards Eric On 01/22/2015 04:50 AM, Chen Fan wrote: > Signed-off-by: Chen Fan > --- > hw/vfio/common.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/hw/vfio/common.c b/hw/vfio/common.c > index cf483ff..e71385e 100644 > --- a/hw/vfio/common.c > +++ b/hw/vfio/common.c > @@ -32,7 +32,7 @@ > #include "trace.h" > > struct vfio_group_head vfio_group_list = > - QLIST_HEAD_INITIALIZER(vfio_address_spaces); > + QLIST_HEAD_INITIALIZER(vfio_group_list); > struct vfio_as_head vfio_address_spaces = > QLIST_HEAD_INITIALIZER(vfio_address_spaces); > >