29ffd0e6d8
- kvm-virtio-net-Add-queues-before-loading-them.patch [RHEL-58316] - kvm-docs-system-s390x-bootdevices-Update-loadparm-docume.patch [RHEL-68444] - kvm-docs-system-bootindex-Make-it-clear-that-s390x-can-a.patch [RHEL-68444] - kvm-hw-s390x-Restrict-loadparm-property-to-devices-that-.patch [RHEL-68444] - kvm-hw-Add-loadparm-property-to-scsi-disk-devices-for-bo.patch [RHEL-68444] - kvm-scsi-fix-allocation-for-s390x-loadparm.patch [RHEL-68444] - kvm-pc-bios-s390x-Initialize-cdrom-type-to-false-for-eac.patch [RHEL-68444] - kvm-pc-bios-s390x-Initialize-machine-loadparm-before-pro.patch [RHEL-68444] - kvm-pc-bios-s390-ccw-Re-initialize-receive-queue-index-b.patch [RHEL-68444] - Resolves: RHEL-58316 (qemu crashed when migrate vm with multiqueue from rhel9.4 to rhel10.0) - Resolves: RHEL-68444 (The new "boot order" feature is sometimes not working as expected [RHEL 10])
40 lines
1.3 KiB
Diff
40 lines
1.3 KiB
Diff
From f0e7e2ae018cabdee3a87fa562ad7a4482d235b4 Mon Sep 17 00:00:00 2001
|
|
From: Jared Rossi <jrossi@linux.ibm.com>
|
|
Date: Fri, 8 Nov 2024 14:41:36 -0500
|
|
Subject: [PATCH 7/9] pc-bios/s390x: Initialize cdrom type to false for each
|
|
IPL device
|
|
|
|
RH-Author: Thomas Huth <thuth@redhat.com>
|
|
RH-MergeRequest: 297: [c10s] Fixes for the new s390x "boot order" feature
|
|
RH-Jira: RHEL-68444
|
|
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
RH-Commit: [6/8] efbe12669e2a20d1c8412edfc5e2350475b84dda (thuth/qemu-kvm-cs9)
|
|
|
|
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>
|
|
(cherry picked from commit 8c797468116d19940fb758efa749eae414616e3a)
|
|
---
|
|
pc-bios/s390-ccw/main.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
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) {
|
|
--
|
|
2.39.3
|
|
|