summaryrefslogtreecommitdiffstats
path: root/schedutils
diff options
context:
space:
mode:
authorChris Metcalf2016-08-09 11:31:41 +0200
committerKarel Zak2016-08-09 11:31:41 +0200
commit47bd898e91043c5c505f8d28bb7d5377f10ae0db (patch)
tree1fe76ba919939c2ff51d4382dcd3cf74434c2e85 /schedutils
parentlibmount: ignore redundant slashes (diff)
downloadkernel-qcow2-util-linux-47bd898e91043c5c505f8d28bb7d5377f10ae0db.tar.gz
kernel-qcow2-util-linux-47bd898e91043c5c505f8d28bb7d5377f10ae0db.tar.xz
kernel-qcow2-util-linux-47bd898e91043c5c505f8d28bb7d5377f10ae0db.zip
taskset: clarify that masks are always hex in man page
The man page confusingly says that the mask is "typically" hexadecimal, when in fact it is always hexadecimal. Fix the language, and provide an additional example with no leading "0x". Also, provide an example using the --cpu-list option. Signed-off-by: Chris Metcalf <cmetcalf@mellanox.com> Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'schedutils')
-rw-r--r--schedutils/taskset.113
1 files changed, 11 insertions, 2 deletions
diff --git a/schedutils/taskset.1 b/schedutils/taskset.1
index 901f9faf5..3ea03b7e2 100644
--- a/schedutils/taskset.1
+++ b/schedutils/taskset.1
@@ -51,7 +51,10 @@ to the last logical CPU. Not all CPUs may exist on a given system but a mask
may specify more CPUs than are present. A retrieved mask will reflect only the
bits that correspond to CPUs physically on the system. If an invalid mask is
given (i.e., one that corresponds to no valid CPUs on the current system) an
-error is returned. The masks are typically given in hexadecimal. For example,
+error is returned. The masks may be specified in hexadecimal (with or without
+a leading "0x"), or as a cpu list with the
+.BR \-\-cpu\-list
+option. For example,
.RS 4
.TP 12
.BR 0x00000001
@@ -61,7 +64,13 @@ is processor #0,
is processors #0 and #1,
.TP
.BR 0xFFFFFFFF
-is all processors (#0 through #31).
+is processors #0 through #31,
+.TP
+.BR 32
+is processors #1, #4, and #5,
+.TP
+.BR \-\-cpu\-list\ 0-2,6
+is processors #0, #1, #2, and #6.
.RE
.PP
When