From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34402) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YzOlA-0007es-Fd for qemu-devel@nongnu.org; Mon, 01 Jun 2015 08:24:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YzOl5-0007er-GC for qemu-devel@nongnu.org; Mon, 01 Jun 2015 08:24:04 -0400 Received: from mx1.redhat.com ([209.132.183.28]:55530) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YzOl5-0007el-BM for qemu-devel@nongnu.org; Mon, 01 Jun 2015 08:23:59 -0400 Date: Mon, 1 Jun 2015 14:23:55 +0200 From: "Michael S. Tsirkin" Message-ID: <1433161230-29421-30-git-send-email-mst@redhat.com> References: <1433161230-29421-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1433161230-29421-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL v2 29/60] virtio-ccw: Don't advertise VIRTIO_F_BAD_FEATURE List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Cornelia Huck , Peter Maydell , Richard Henderson , Alexander Graf , Christian Borntraeger From: Cornelia Huck This was copied from virtio-pci, but it doesn't make much sense for ccw, as it doesn't have to handle the broken implementations this bit is supposed to deal with. Remove it. Signed-off-by: Cornelia Huck Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/s390x/virtio-ccw.c | 1 - 1 file changed, 1 deletion(-) diff --git a/hw/s390x/virtio-ccw.c b/hw/s390x/virtio-ccw.c index 6e9f8c1..b7c07ef 100644 --- a/hw/s390x/virtio-ccw.c +++ b/hw/s390x/virtio-ccw.c @@ -1387,7 +1387,6 @@ static void virtio_ccw_device_plugged(DeviceState *d) sch->id.cu_model = virtio_bus_get_vdev_id(&dev->bus); virtio_add_feature(&vdev->host_features, VIRTIO_F_NOTIFY_ON_EMPTY); - virtio_add_feature(&vdev->host_features, VIRTIO_F_BAD_FEATURE); css_generate_sch_crws(sch->cssid, sch->ssid, sch->schid, d->hotplugged, 1); -- MST