]> code.ossystems Code Review - openembedded-core.git/commitdiff
runqemu: Add a hook to allow it to renice
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 5 Sep 2020 14:06:07 +0000 (15:06 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 6 Sep 2020 08:58:15 +0000 (09:58 +0100)
We have an issue where qemu is being starved of resources on our autobuilders.
We can't raise its priority without special capacilties, therefore add a hook
which if present can allow this to happen using an executable
"~/runqemu-renice".

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/runqemu

index c71f3c4df578877765da314c788e794a6d3b5a80..e62d869c20cfad5d3cfcdeee95eeef5df9a1da79 100755 (executable)
@@ -1519,6 +1519,11 @@ def main():
     try:
         config = BaseConfig()
 
+        renice = os.path.expanduser("~/bin/runqemu-renice")
+        if os.path.exists(renice):
+            logger.info('Using %s to renice' % renice)
+            subprocess.check_call([renice, str(os.getpid())])
+
         def sigterm_handler(signum, frame):
             logger.info("SIGTERM received")
             os.kill(config.qemupid, signal.SIGTERM)