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

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