Blame SOURCES/kvm-usb-storage-Add-rerror-werror-properties.patch

357786
From 222934faee20b22e77f711d6bc5d986c2e1fd297 Mon Sep 17 00:00:00 2001
357786
From: Kevin Wolf <kwolf@redhat.com>
357786
Date: Mon, 2 Jul 2018 12:20:17 +0200
357786
Subject: [PATCH 51/57] usb-storage: Add rerror/werror properties
357786
357786
RH-Author: Kevin Wolf <kwolf@redhat.com>
357786
Message-id: <20180702122017.29664-2-kwolf@redhat.com>
357786
Patchwork-id: 81183
357786
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH 1/1] usb-storage: Add rerror/werror properties
357786
Bugzilla: 1595180
357786
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
357786
RH-Acked-by: Max Reitz <mreitz@redhat.com>
357786
RH-Acked-by: John Snow <jsnow@redhat.com>
357786
357786
The error handling policy was traditionally set with -drive, but with
357786
-blockdev it is no longer possible to set frontend options. scsi-disk
357786
(and other block devices) have long supported qdev properties to
357786
configure the error handling policy, so let's add these options to
357786
usb-storage as well and just forward them to the internal scsi-disk
357786
instance.
357786
357786
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
357786
Reviewed-by: Markus Armbruster <armbru@redhat.com>
357786
(cherry picked from commit b8efb36b9e99dbea7370139c0866b97a933f78d4)
357786
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
357786
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
357786
---
357786
 hw/scsi/scsi-bus.c     | 11 ++++++++++-
357786
 hw/usb/dev-storage.c   |  2 ++
357786
 include/hw/scsi/scsi.h |  2 ++
357786
 3 files changed, 14 insertions(+), 1 deletion(-)
357786
357786
diff --git a/hw/scsi/scsi-bus.c b/hw/scsi/scsi-bus.c
357786
index 9646743..5905f6b 100644
357786
--- a/hw/scsi/scsi-bus.c
357786
+++ b/hw/scsi/scsi-bus.c
357786
@@ -226,6 +226,8 @@ static void scsi_qdev_unrealize(DeviceState *qdev, Error **errp)
357786
 SCSIDevice *scsi_bus_legacy_add_drive(SCSIBus *bus, BlockBackend *blk,
357786
                                       int unit, bool removable, int bootindex,
357786
                                       bool share_rw,
357786
+                                      BlockdevOnError rerror,
357786
+                                      BlockdevOnError werror,
357786
                                       const char *serial, Error **errp)
357786
 {
357786
     const char *driver;
357786
@@ -262,6 +264,10 @@ SCSIDevice *scsi_bus_legacy_add_drive(SCSIBus *bus, BlockBackend *blk,
357786
         object_unparent(OBJECT(dev));
357786
         return NULL;
357786
     }
357786
+
357786
+    qdev_prop_set_enum(dev, "rerror", rerror);
357786
+    qdev_prop_set_enum(dev, "werror", werror);
357786
+
357786
     object_property_set_bool(OBJECT(dev), true, "realized", &err;;
357786
     if (err != NULL) {
357786
         error_propagate(errp, err);
357786
@@ -285,7 +291,10 @@ void scsi_bus_legacy_handle_cmdline(SCSIBus *bus)
357786
         }
357786
         qemu_opts_loc_restore(dinfo->opts);
357786
         scsi_bus_legacy_add_drive(bus, blk_by_legacy_dinfo(dinfo),
357786
-                                  unit, false, -1, false, NULL, &error_fatal);
357786
+                                  unit, false, -1, false,
357786
+                                  BLOCKDEV_ON_ERROR_AUTO,
357786
+                                  BLOCKDEV_ON_ERROR_AUTO,
357786
+                                  NULL, &error_fatal);
357786
     }
357786
     loc_pop(&loc;;
357786
 }
357786
diff --git a/hw/usb/dev-storage.c b/hw/usb/dev-storage.c
357786
index b56c75a..68e2062 100644
357786
--- a/hw/usb/dev-storage.c
357786
+++ b/hw/usb/dev-storage.c
357786
@@ -634,6 +634,7 @@ static void usb_msd_storage_realize(USBDevice *dev, Error **errp)
357786
                  &usb_msd_scsi_info_storage, NULL);
357786
     scsi_dev = scsi_bus_legacy_add_drive(&s->bus, blk, 0, !!s->removable,
357786
                                          s->conf.bootindex, s->conf.share_rw,
357786
+                                         s->conf.rerror, s->conf.werror,
357786
                                          dev->serial,
357786
                                          errp);
357786
     blk_unref(blk);
357786
@@ -687,6 +688,7 @@ static const VMStateDescription vmstate_usb_msd = {
357786
 
357786
 static Property msd_properties[] = {
357786
     DEFINE_BLOCK_PROPERTIES(MSDState, conf),
357786
+    DEFINE_BLOCK_ERROR_PROPERTIES(MSDState, conf),
357786
     DEFINE_PROP_BIT("removable", MSDState, removable, 0, false),
357786
     DEFINE_PROP_END_OF_LIST(),
357786
 };
357786
diff --git a/include/hw/scsi/scsi.h b/include/hw/scsi/scsi.h
357786
index e35137e..1a7290d 100644
357786
--- a/include/hw/scsi/scsi.h
357786
+++ b/include/hw/scsi/scsi.h
357786
@@ -154,6 +154,8 @@ static inline SCSIBus *scsi_bus_from_device(SCSIDevice *d)
357786
 SCSIDevice *scsi_bus_legacy_add_drive(SCSIBus *bus, BlockBackend *blk,
357786
                                       int unit, bool removable, int bootindex,
357786
                                       bool share_rw,
357786
+                                      BlockdevOnError rerror,
357786
+                                      BlockdevOnError werror,
357786
                                       const char *serial, Error **errp);
357786
 void scsi_bus_legacy_handle_cmdline(SCSIBus *bus);
357786
 void scsi_legacy_handle_cmdline(void);
357786
-- 
357786
1.8.3.1
357786