[libvirt PATCH] util: Fix error reporting in virProcessSetMaxMemLock

Jiri Denemark jdenemar at redhat.com
Fri Jun 10 16:17:23 UTC 2022


Commit v7.1.0-136-g6a6d6bb520 refactored virProcessSetMaxMemLock by
moving its part into a new virProcessSetLimit, but lost "return -1" on
error;

Signed-off-by: Jiri Denemark <jdenemar at redhat.com>
---
 src/util/virprocess.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/util/virprocess.c b/src/util/virprocess.c
index 5ed0b5d0db..013afd91b4 100644
--- a/src/util/virprocess.c
+++ b/src/util/virprocess.c
@@ -926,6 +926,7 @@ virProcessSetMaxMemLock(pid_t pid, unsigned long long bytes)
                              _("cannot limit locked memory "
                                "of process %lld to %llu"),
                              (long long int)pid, bytes);
+        return -1;
     }
 
     VIR_DEBUG("Locked memory for process %lld limited to %llu bytes",
-- 
2.35.1



More information about the libvir-list mailing list