|
|
9da9ec |
From 532739e58bc36df820a1742489c744e7589221d0 Mon Sep 17 00:00:00 2001
|
|
|
9da9ec |
From: John Kacur <jkacur@redhat.com>
|
|
|
9da9ec |
Date: Wed, 10 Nov 2021 15:58:44 -0500
|
|
|
9da9ec |
Subject: [PATCH] tuna: Make it clear that include and isolate affects IRQs in
|
|
|
9da9ec |
help
|
|
|
9da9ec |
|
|
|
9da9ec |
Make it clear in the online help (-h) and in the manpage
|
|
|
9da9ec |
that
|
|
|
9da9ec |
-i --isolate
|
|
|
9da9ec |
-I --include
|
|
|
9da9ec |
|
|
|
9da9ec |
affects IRQs as well as threads
|
|
|
9da9ec |
|
|
|
9da9ec |
Signed-off-by: John Kacur <jkacur@redhat.com>
|
|
|
9da9ec |
---
|
|
|
9da9ec |
docs/tuna.8 | 4 ++--
|
|
|
9da9ec |
tuna-cmd.py | 4 ++--
|
|
|
9da9ec |
2 files changed, 4 insertions(+), 4 deletions(-)
|
|
|
9da9ec |
|
|
|
9da9ec |
diff --git a/docs/tuna.8 b/docs/tuna.8
|
|
|
9da9ec |
index b6431be5e117..bd6299b5a771 100644
|
|
|
9da9ec |
--- a/docs/tuna.8
|
|
|
9da9ec |
+++ b/docs/tuna.8
|
|
|
9da9ec |
@@ -26,10 +26,10 @@ Apply changes described in profile
|
|
|
9da9ec |
List preloaded profiles
|
|
|
9da9ec |
.TP
|
|
|
9da9ec |
\fB\-i\fR, \fB\-\-isolate\fR
|
|
|
9da9ec |
-Move all threads away from CPU\-LIST. Requires \fB\-c\fR or \fB-S\fR.
|
|
|
9da9ec |
+Move all allowed threads and IRQs away from CPU\-LIST. Requires \fB\-c\fR or \fB-S\fR.
|
|
|
9da9ec |
.TP
|
|
|
9da9ec |
\fB\-I\fR, \fB\-\-include\fR
|
|
|
9da9ec |
-Allow all threads to run on CPU\-LIST. Requires \fB\-c\fR or \fB-S\fR.
|
|
|
9da9ec |
+Allow all allowed threads and IRQs to run on CPU\-LIST. Requires \fB\-c\fR or \fB-S\fR.
|
|
|
9da9ec |
.TP
|
|
|
9da9ec |
\fB\-m\fR, \fB\-\-move\fR
|
|
|
9da9ec |
Move selected entities to CPU\-LIST. Requires \fB\-c\fR and either \fB-t\fR or \fB-q\fR.
|
|
|
9da9ec |
diff --git a/tuna-cmd.py b/tuna-cmd.py
|
|
|
9da9ec |
index 46ce86efa036..d209a2e89493 100755
|
|
|
9da9ec |
--- a/tuna-cmd.py
|
|
|
9da9ec |
+++ b/tuna-cmd.py
|
|
|
9da9ec |
@@ -63,9 +63,9 @@ def usage():
|
|
|
9da9ec |
_('Explicitly disable usage of perf in GUI for process view')))
|
|
|
9da9ec |
print(fmt % ('-f, --filter',
|
|
|
9da9ec |
_('Display filter the selected entities')))
|
|
|
9da9ec |
- print(fmt % ('-i, --isolate', _('Move all threads away from %(cpulist)s') %
|
|
|
9da9ec |
+ print(fmt % ('-i, --isolate', _('Move all allowed threads and IRQs away from %(cpulist)s') %
|
|
|
9da9ec |
{"cpulist": _('CPU-LIST')}))
|
|
|
9da9ec |
- print(fmt % ('-I, --include', _('Allow all threads to run on %(cpulist)s') %
|
|
|
9da9ec |
+ print(fmt % ('-I, --include', _('Allow all allowed threads and IRQs to run on %(cpulist)s') %
|
|
|
9da9ec |
{"cpulist": _('CPU-LIST')}))
|
|
|
9da9ec |
print(fmt % ('-K, --no_kthreads',
|
|
|
9da9ec |
_('Operations will not affect kernel threads')))
|
|
|
9da9ec |
--
|
|
|
9da9ec |
2.31.1
|
|
|
9da9ec |
|