diff mbox series

[PULL,08/12] pc-bios/s390x: Initialize cdrom type to false for each IPL device

Message ID 20241118173634.473532-9-thuth@redhat.com (mailing list archive)
State New
Headers show
Series [PULL,01/12] hw/usb: Use __attribute__((packed)) vs __packed | expand

Commit Message

Thomas Huth Nov. 18, 2024, 5:36 p.m. UTC
From: Jared Rossi <jrossi@linux.ibm.com>

Clear information about cdrom type so that current IPL device isn't tainted
by stale data from previous devices.

Signed-off-by: Jared Rossi <jrossi@linux.ibm.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-ID: <20241108194136.2833932-1-jrossi@linux.ibm.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 pc-bios/s390-ccw/main.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/pc-bios/s390-ccw/main.c b/pc-bios/s390-ccw/main.c
index a4d1c05aac..7509755e36 100644
--- a/pc-bios/s390-ccw/main.c
+++ b/pc-bios/s390-ccw/main.c
@@ -242,6 +242,7 @@  static bool find_boot_device(void)
 static int virtio_setup(void)
 {
     VDev *vdev = virtio_get_device();
+    vdev->is_cdrom = false;
     int ret;
 
     switch (vdev->senseid.cu_model) {