From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40733) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dXO0m-00086U-DH for qemu-devel@nongnu.org; Tue, 18 Jul 2017 04:37:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dXO0h-0003pZ-IW for qemu-devel@nongnu.org; Tue, 18 Jul 2017 04:37:44 -0400 Received: from mx1.redhat.com ([209.132.183.28]:58546) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dXO0h-0003pA-CH for qemu-devel@nongnu.org; Tue, 18 Jul 2017 04:37:39 -0400 Date: Tue, 18 Jul 2017 10:37:30 +0200 From: Cornelia Huck Message-ID: <20170718103730.58f3d8cc@gondolin> In-Reply-To: <20170718014926.44781-3-bjsdjshi@linux.vnet.ibm.com> References: <20170718014926.44781-1-bjsdjshi@linux.vnet.ibm.com> <20170718014926.44781-3-bjsdjshi@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 2/2] vfio/ccw: fix initialization of the Object DeviceState pointer in the common base-device List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Dong Jia Shi Cc: linux-s390@vger.kernel.org, kvm@vger.kernel.org, qemu-devel@nongnu.org, borntraeger@de.ibm.com, Alex Williamson On Tue, 18 Jul 2017 03:49:26 +0200 Dong Jia Shi wrote: > Commit 7da624e2 ("vfio: Test realized when using VFIOGroup.device_list > iterator") introduced a pointer to the Object DeviceState in the VFIO > common base-device and skiped non-realized devices as we iterate s/skiped/skipped/ I'll fix this while applying. > VFIOGroup.device_list. While it missed to initialize the pointer for > the vfio-ccw case. Let's fix it. > > Fixes: 7da624e2 ("vfio: Test realized when using VFIOGroup.device_list > iterator") > > Cc: Alex Williamson > Reviewed-by: Halil Pasic > Signed-off-by: Dong Jia Shi > --- > hw/vfio/ccw.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/hw/vfio/ccw.c b/hw/vfio/ccw.c > index 8d97b53e77..a8baadf57a 100644 > --- a/hw/vfio/ccw.c > +++ b/hw/vfio/ccw.c > @@ -338,6 +338,7 @@ static void vfio_ccw_realize(DeviceState *dev, Error **errp) > vcdev->vdev.type = VFIO_DEVICE_TYPE_CCW; > vcdev->vdev.name = g_strdup_printf("%x.%x.%04x", cdev->hostid.cssid, > cdev->hostid.ssid, cdev->hostid.devid); > + vcdev->vdev.dev = dev; > QLIST_FOREACH(vbasedev, &group->device_list, next) { > if (strcmp(vbasedev->name, vcdev->vdev.name) == 0) { > error_setg(&err, "vfio: subchannel %s has already been attached",