Blame SOURCES/0014-Improve-documentation-and-logging-for-banned-cpus.patch

120141
From cfb15f0bb95ebfd4357708eae42febe9f2121fba Mon Sep 17 00:00:00 2001
120141
From: Tao Liu <ltao@redhat.com>
120141
Date: Wed, 13 Jul 2022 17:11:40 +0800
120141
Subject: [PATCH 14/14] Improve documentation and logging for banned cpus
120141
120141
This patch have no functional modification. Just improve the doc and log
120141
for isolcpu, nohz_full and numa node banning cpus, for providing more
120141
info for users.
120141
120141
Signed-off-by: Tao Liu <ltao@redhat.com>
120141
---
120141
 cputree.c    | 6 +++---
120141
 irqbalance.1 | 2 +-
120141
 placement.c  | 6 +++++-
120141
 3 files changed, 9 insertions(+), 5 deletions(-)
120141
120141
diff --git a/cputree.c b/cputree.c
120141
index c250977..eb1981e 100644
120141
--- a/cputree.c
120141
+++ b/cputree.c
120141
@@ -159,14 +159,14 @@ static void setup_banned_cpus(void)
120141
 	cpus_or(banned_cpus, nohz_full, isolated_cpus);
120141
 
120141
 	cpumask_scnprintf(buffer, 4096, isolated_cpus);
120141
-	log(TO_CONSOLE, LOG_INFO, "Isolated CPUs: %s\n", buffer);
120141
+	log(TO_CONSOLE, LOG_INFO, "Prevent irq assignment to these isolated CPUs: %s\n", buffer);
120141
 	cpumask_scnprintf(buffer, 4096, nohz_full);
120141
-	log(TO_CONSOLE, LOG_INFO, "Adaptive-ticks CPUs: %s\n", buffer);
120141
+	log(TO_CONSOLE, LOG_INFO, "Prevent irq assignment to these adaptive-ticks CPUs: %s\n", buffer);
120141
 out:
120141
 #ifdef HAVE_THERMAL
120141
 	cpus_or(banned_cpus, banned_cpus, thermal_banned_cpus);
120141
 	cpumask_scnprintf(buffer, 4096, thermal_banned_cpus);
120141
-	log(TO_CONSOLE, LOG_INFO, "Thermal-banned CPUs: %s\n", buffer);
120141
+	log(TO_CONSOLE, LOG_INFO, "Prevent irq assignment to these thermal-banned CPUs: %s\n", buffer);
120141
 #endif
120141
 	cpumask_scnprintf(buffer, 4096, banned_cpus);
120141
 	log(TO_CONSOLE, LOG_INFO, "Banned CPUs: %s\n", buffer);
120141
diff --git a/irqbalance.1 b/irqbalance.1
120141
index 361faea..4c75362 100644
120141
--- a/irqbalance.1
120141
+++ b/irqbalance.1
120141
@@ -167,7 +167,7 @@ Same as --debug.
120141
 .B IRQBALANCE_BANNED_CPUS
120141
 Provides a mask of CPUs which irqbalance should ignore and never assign interrupts to.
120141
 If not specified, irqbalance use mask of isolated and adaptive-ticks CPUs on the
120141
-system as the default value.
120141
+system as the default value. The "isolcpus=" boot parameter specifies the isolated CPUs. The "nohz_full=" boot parameter specifies the adaptive-ticks CPUs. By default, no CPU will be an isolated or adaptive-ticks CPU.
120141
 This is a hexmask without the leading ’0x’. On systems with large numbers of
120141
 processors, each group of eight hex digits is separated by a comma ’,’. i.e.
120141
 ‘export IRQBALANCE_BANNED_CPUS=fc0‘ would prevent irqbalance from assigning irqs
120141
diff --git a/placement.c b/placement.c
120141
index 17a9f2e..9fde8cb 100644
120141
--- a/placement.c
120141
+++ b/placement.c
120141
@@ -135,8 +135,12 @@ static void place_irq_in_node(struct irq_info *info, void *data __attribute__((u
120141
 		 * Need to make sure this node is elligible for migration
120141
 		 * given the banned cpu list
120141
 		 */
120141
-		if (!cpus_intersects(irq_numa_node(info)->mask, unbanned_cpus))
120141
+		if (!cpus_intersects(irq_numa_node(info)->mask, unbanned_cpus)) {
120141
+			log(TO_CONSOLE, LOG_WARNING, "There is no suitable CPU in node:%d.\n", irq_numa_node(info)->number);
120141
+			log(TO_CONSOLE, LOG_WARNING, "Irqbalance dispatch irq:%d to other node.\n", info->irq);
120141
 			goto find_placement;
120141
+		}
120141
+
120141
 		/*
120141
 		 * This irq belongs to a device with a preferred numa node
120141
 		 * put it on that node
120141
-- 
120141
2.33.1
120141