365a1410b6
- kvm-block-nvme-fix-infinite-loop-in-nvme_free_req_queue_.patch [bz#2024544] - kvm-rhel-machine-types-x86-set-prefer_sockets.patch [bz#2028623] - Resolves: bz#2024544 (Fio workers hangs when running fio with 32 jobs iodepth 32 and QEMU's userspace NVMe driver) - Resolves: bz#2028623 ([9.0] machine types: 6.2: Fix prefer_sockets)
53 lines
1.8 KiB
Diff
53 lines
1.8 KiB
Diff
From ecadfaec992fda7f485522c9ee6e7c9b05614a22 Mon Sep 17 00:00:00 2001
|
|
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
|
|
Date: Tue, 7 Dec 2021 18:39:47 +0000
|
|
Subject: [PATCH 2/2] rhel machine types/x86: set prefer_sockets
|
|
|
|
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
|
RH-MergeRequest: 59: rhel machine types/x86: set prefer_sockets
|
|
RH-Commit: [1/1] 9bcd9e2c95154e39ef30a8a342ad6c713fa4f1fb (dagrh/c-9-s-qemu-kvm)
|
|
RH-Bugzilla: 2028623
|
|
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
RH-Acked-by: quintela1 <quintela@redhat.com>
|
|
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
|
|
|
|
When I fixed up the machine types for 8.5 I missed the
|
|
prefer_sockets = true
|
|
|
|
add them in; it looks like Power, ARM already have them, and I see them
|
|
in thuth's s390 patch.
|
|
|
|
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
|
---
|
|
hw/i386/pc_piix.c | 1 +
|
|
hw/i386/pc_q35.c | 1 +
|
|
2 files changed, 2 insertions(+)
|
|
|
|
diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c
|
|
index 183b5d5464..fccb7f5fc9 100644
|
|
--- a/hw/i386/pc_piix.c
|
|
+++ b/hw/i386/pc_piix.c
|
|
@@ -973,6 +973,7 @@ static void pc_machine_rhel7_options(MachineClass *m)
|
|
compat_props_add(m->compat_props, pc_rhel_compat, pc_rhel_compat_len);
|
|
m->alias = "pc";
|
|
m->is_default = 1;
|
|
+ m->smp_props.prefer_sockets = true;
|
|
}
|
|
|
|
static void pc_init_rhel760(MachineState *machine)
|
|
diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c
|
|
index 0e7e885e78..3b748ddd7b 100644
|
|
--- a/hw/i386/pc_q35.c
|
|
+++ b/hw/i386/pc_q35.c
|
|
@@ -662,6 +662,7 @@ static void pc_q35_machine_rhel850_options(MachineClass *m)
|
|
hw_compat_rhel_8_5_len);
|
|
compat_props_add(m->compat_props, pc_rhel_8_5_compat,
|
|
pc_rhel_8_5_compat_len);
|
|
+ m->smp_props.prefer_sockets = true;
|
|
}
|
|
|
|
DEFINE_PC_MACHINE(q35_rhel850, "pc-q35-rhel8.5.0", pc_q35_init_rhel850,
|
|
--
|
|
2.27.0
|
|
|