From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1YFYFN-0002Vi-JY for mharc-qemu-trivial@gnu.org; Sun, 25 Jan 2015 20:13:45 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53972) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YFYFI-0002VW-D3 for qemu-trivial@nongnu.org; Sun, 25 Jan 2015 20:13:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YFYFF-0005Jm-7N for qemu-trivial@nongnu.org; Sun, 25 Jan 2015 20:13:40 -0500 Received: from [59.151.112.132] (port=50509 helo=heian.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YFYFE-0005J8-SJ; Sun, 25 Jan 2015 20:13:37 -0500 X-IronPort-AV: E=Sophos;i="5.04,848,1406563200"; d="scan'208";a="56599363" Received: from unknown (HELO edo.cn.fujitsu.com) ([10.167.33.5]) by heian.cn.fujitsu.com with ESMTP; 26 Jan 2015 09:10:00 +0800 Received: from G08CNEXCHPEKD02.g08.fujitsu.local (localhost.localdomain [127.0.0.1]) by edo.cn.fujitsu.com (8.14.3/8.13.1) with ESMTP id t0Q1CoPA027203; Mon, 26 Jan 2015 09:12:50 +0800 Received: from [10.167.226.78] (10.167.226.78) by G08CNEXCHPEKD02.g08.fujitsu.local (10.167.33.89) with Microsoft SMTP Server id 14.3.181.6; Mon, 26 Jan 2015 09:13:32 +0800 Message-ID: <54C59333.8080005@cn.fujitsu.com> Date: Mon, 26 Jan 2015 09:06:59 +0800 From: Chen Fan User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: Eric Auger , , References: <1421898608-10313-1-git-send-email-chen.fan.fnst@cn.fujitsu.com> <54C0B156.3080608@linaro.org> In-Reply-To: <54C0B156.3080608@linaro.org> Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: [10.167.226.78] X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 59.151.112.132 Cc: Alex Williamson Subject: Re: [Qemu-trivial] [Qemu-devel] [PATCH] vfio: fix wrong initialize vfio_group_list X-BeenThere: qemu-trivial@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jan 2015 01:13:44 -0000 CC: qemu-trivial@nongnu.org On 01/22/2015 04:14 PM, Eric Auger wrote: > Hi Chen, > > thanks for correcting this mistake I introduced when moving code from > pci to common. so, can you check in this patch? Thanks, Chen > > 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); >> >> > From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53994) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YFYFM-0002Ve-Oj for qemu-devel@nongnu.org; Sun, 25 Jan 2015 20:13:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YFYFL-0005LU-TV for qemu-devel@nongnu.org; Sun, 25 Jan 2015 20:13:44 -0500 Message-ID: <54C59333.8080005@cn.fujitsu.com> Date: Mon, 26 Jan 2015 09:06:59 +0800 From: Chen Fan MIME-Version: 1.0 References: <1421898608-10313-1-git-send-email-chen.fan.fnst@cn.fujitsu.com> <54C0B156.3080608@linaro.org> In-Reply-To: <54C0B156.3080608@linaro.org> Content-Type: text/plain; charset="windows-1252"; format=flowed 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: Eric Auger , qemu-devel@nongnu.org, qemu-trivial@nongnu.org Cc: Alex Williamson CC: qemu-trivial@nongnu.org On 01/22/2015 04:14 PM, Eric Auger wrote: > Hi Chen, > > thanks for correcting this mistake I introduced when moving code from > pci to common. so, can you check in this patch? Thanks, Chen > > 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); >> >> >