From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39201) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YJ5KI-000072-A4 for qemu-devel@nongnu.org; Wed, 04 Feb 2015 14:09:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YJ5KH-00031i-Da for qemu-devel@nongnu.org; Wed, 04 Feb 2015 14:09:26 -0500 Received: from mx1.redhat.com ([209.132.183.28]:56733) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YJ5KH-00031W-6S for qemu-devel@nongnu.org; Wed, 04 Feb 2015 14:09:25 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t14J9Oq1023477 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Wed, 4 Feb 2015 14:09:24 -0500 From: Alex Williamson Date: Wed, 04 Feb 2015 12:09:23 -0700 Message-ID: <20150204190923.24612.2954.stgit@bling.home> In-Reply-To: <20150204190814.24612.42368.stgit@bling.home> References: <20150204190814.24612.42368.stgit@bling.home> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PULL 1/2] vfio: fix wrong initialize vfio_group_list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: alex.williamson@redhat.com From: Chen Fan Signed-off-by: Chen Fan Signed-off-by: Alex Williamson --- 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);