]> xenbits.xensource.com Git - libvirt.git/commitdiff
qemu_process: Issue an info message when subtracting isolcpus
authorMichal Privoznik <mprivozn@redhat.com>
Thu, 16 May 2024 11:09:02 +0000 (13:09 +0200)
committerMichal Privoznik <mprivozn@redhat.com>
Mon, 17 Jun 2024 10:30:39 +0000 (12:30 +0200)
In one of my previous commits I've made us substract isolcpus
from all online CPUs when setting affinity on QEMU threads. See
commit below for more info on that. Nevertheless, this is
something that surely deserves an entry in log. I've chosen INFO
priority for now. We can promote that to a regular WARN if users
complain.

Fixes: da95bcb6b2d9b04958e0f2603202801dd29debb8
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
src/qemu/qemu_process.c

index 7ef7040a8584d4b98d33818959cc55f80c07284f..2c33ac3bf754b105ebe1dd0d7776b3bbd0182a91 100644 (file)
@@ -2348,6 +2348,12 @@ qemuProcessGetAllCpuAffinity(virBitmap **cpumapRet)
         return -1;
 
     if (isolCpus) {
+        g_autofree char *isolCpusStr = virBitmapFormat(isolCpus);
+        g_autofree char *cpumapRetStr = virBitmapFormat(*cpumapRet);
+
+        VIR_INFO("Subtracting isolated CPUs %1$s from online CPUs %2$s",
+                 isolCpusStr, cpumapRetStr);
+
         virBitmapSubtract(*cpumapRet, isolCpus);
     }