|
|
d759b5 |
From 0f85e65a6d4ce41d05464129fddb3d28171519b2 Mon Sep 17 00:00:00 2001
|
|
|
d759b5 |
Message-Id: <0f85e65a6d4ce41d05464129fddb3d28171519b2@dist-git>
|
|
|
d759b5 |
From: =?UTF-8?q?J=C3=A1n=20Tomko?= <jtomko@redhat.com>
|
|
|
d759b5 |
Date: Tue, 11 Feb 2020 03:15:00 +0100
|
|
|
d759b5 |
Subject: [PATCH] RHEL: qemuCheckUnprivSGIO: use @sysfs_path to get unpriv_sgio
|
|
|
d759b5 |
MIME-Version: 1.0
|
|
|
d759b5 |
Content-Type: text/plain; charset=UTF-8
|
|
|
d759b5 |
Content-Transfer-Encoding: 8bit
|
|
|
d759b5 |
|
|
|
d759b5 |
Downstream commit 65f4ff0e2c9a968b7ec65c8d751d4055cc212628
|
|
|
d759b5 |
RHEL: qemuSetUnprivSGIO: Actually use calculated
|
|
|
d759b5 |
@sysfs_path to set unpriv_sgio
|
|
|
d759b5 |
removed the device_path -> sysfs_path conversion from
|
|
|
d759b5 |
both virGetDeviceUnprivSGIO and virSetDeviceUnprivSGIO,
|
|
|
d759b5 |
but only adjusted one of the callers.
|
|
|
d759b5 |
|
|
|
d759b5 |
Signed-off-by: Ján Tomko <jtomko@redhat.com>
|
|
|
d759b5 |
https://bugzilla.redhat.com/show_bug.cgi?id=1801139
|
|
|
d759b5 |
Message-Id: <f4d7764bb8eecd133b2afa3727b8299622e9359b.1581387247.git.jtomko@redhat.com>
|
|
|
d759b5 |
Reviewed-by: Andrea Bolognani <abologna@redhat.com>
|
|
|
d759b5 |
---
|
|
|
d759b5 |
src/qemu/qemu_conf.c | 2 +-
|
|
|
d759b5 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
d759b5 |
|
|
|
d759b5 |
diff --git a/src/qemu/qemu_conf.c b/src/qemu/qemu_conf.c
|
|
|
d759b5 |
index 5788354444..a86e340013 100644
|
|
|
d759b5 |
--- a/src/qemu/qemu_conf.c
|
|
|
d759b5 |
+++ b/src/qemu/qemu_conf.c
|
|
|
d759b5 |
@@ -1255,7 +1255,7 @@ qemuCheckUnprivSGIO(virHashTablePtr sharedDevices,
|
|
|
d759b5 |
goto cleanup;
|
|
|
d759b5 |
}
|
|
|
d759b5 |
|
|
|
d759b5 |
- if (virGetDeviceUnprivSGIO(device_path, &val) < 0)
|
|
|
d759b5 |
+ if (virGetDeviceUnprivSGIO(sysfs_path, &val) < 0)
|
|
|
d759b5 |
goto cleanup;
|
|
|
d759b5 |
|
|
|
d759b5 |
/* Error message on failure needs to be handled in caller
|
|
|
d759b5 |
--
|
|
|
d759b5 |
2.25.0
|
|
|
d759b5 |
|