|
|
a41c76 |
From ef5a82d50464478a302cb59804d03e4a3dada83e Mon Sep 17 00:00:00 2001
|
|
|
a41c76 |
Message-Id: <ef5a82d50464478a302cb59804d03e4a3dada83e@dist-git>
|
|
|
073345 |
From: =?UTF-8?q?J=C3=A1n=20Tomko?= <jtomko@redhat.com>
|
|
|
a41c76 |
Date: Fri, 6 Mar 2020 15:52:26 +0100
|
|
|
073345 |
Subject: [PATCH] RHEL: qemuCheckUnprivSGIO: use @sysfs_path to get unpriv_sgio
|
|
|
073345 |
MIME-Version: 1.0
|
|
|
073345 |
Content-Type: text/plain; charset=UTF-8
|
|
|
073345 |
Content-Transfer-Encoding: 8bit
|
|
|
073345 |
|
|
|
073345 |
Downstream commit 65f4ff0e2c9a968b7ec65c8d751d4055cc212628
|
|
|
073345 |
RHEL: qemuSetUnprivSGIO: Actually use calculated
|
|
|
073345 |
@sysfs_path to set unpriv_sgio
|
|
|
073345 |
removed the device_path -> sysfs_path conversion from
|
|
|
073345 |
both virGetDeviceUnprivSGIO and virSetDeviceUnprivSGIO,
|
|
|
073345 |
but only adjusted one of the callers.
|
|
|
073345 |
|
|
|
a41c76 |
https://bugzilla.redhat.com/show_bug.cgi?id=1808400
|
|
|
073345 |
|
|
|
073345 |
Signed-off-by: Ján Tomko <jtomko@redhat.com>
|
|
|
073345 |
Signed-off-by: Andrea Bolognani <abologna@redhat.com>
|
|
|
a41c76 |
Message-Id: <20200306145226.1610708-7-abologna@redhat.com>
|
|
|
073345 |
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
|
|
|
073345 |
---
|
|
|
073345 |
src/qemu/qemu_conf.c | 2 +-
|
|
|
073345 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
073345 |
|
|
|
073345 |
diff --git a/src/qemu/qemu_conf.c b/src/qemu/qemu_conf.c
|
|
|
a41c76 |
index b61d7e59fa..6a22d78ac6 100644
|
|
|
073345 |
--- a/src/qemu/qemu_conf.c
|
|
|
073345 |
+++ b/src/qemu/qemu_conf.c
|
|
|
a41c76 |
@@ -1430,7 +1430,7 @@ qemuCheckUnprivSGIO(virHashTablePtr sharedDevices,
|
|
|
a41c76 |
if (!(virHashLookup(sharedDevices, key)))
|
|
|
a41c76 |
return 0;
|
|
|
073345 |
|
|
|
073345 |
- if (virGetDeviceUnprivSGIO(device_path, &val) < 0)
|
|
|
073345 |
+ if (virGetDeviceUnprivSGIO(sysfs_path, &val) < 0)
|
|
|
a41c76 |
return -1;
|
|
|
073345 |
|
|
|
073345 |
/* Error message on failure needs to be handled in caller
|
|
|
073345 |
--
|
|
|
073345 |
2.25.1
|
|
|
073345 |
|