irqbalance/Add-IRQBALANCE_BANNED_CPULIST-to-env-file.patch

40 lines
1.1 KiB
Diff
Raw Normal View History

From 31c7d128fd6f083c7395b327f824a0c11d5e380f Mon Sep 17 00:00:00 2001
From: Yunfeng Ye <yeyunfeng@huawei.com>
Date: Sat, 21 Nov 2020 14:27:28 +0800
Subject: [PATCH] Add IRQBALANCE_BANNED_CPULIST to env file
Signed-off-by: Yunfeng Ye <yeyunfeng@huawei.com>
---
misc/irqbalance.env | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/misc/irqbalance.env b/misc/irqbalance.env
index 23570b2..237e4af 100644
--- a/misc/irqbalance.env
+++ b/misc/irqbalance.env
@@ -22,6 +22,21 @@
#IRQBALANCE_BANNED_CPUS=
#
+# IRQBALANCE_BANNED_CPULIST
+# The CPUs list which allows you to indicate which CPUs should
+# be skipped when reblancing IRQs. CPU numbers in CPUs list will
+# not have any IRQs assigned to them on rebalance.
+#
+# The format of CPUs list is:
+# <cpu number>,...,<cpu number>
+# or a range:
+# <cpu number>-<cpu number>
+# or a mixture:
+# <cpu number>,...,<cpu number>-<cpu number>
+#
+#IRQBALANCE_BANNED_CPULIST=
+
+#
# IRQBALANCE_ARGS
# Append any args here to the irqbalance daemon as documented in the man
# page.
--
1.8.3.1