summaryrefslogtreecommitdiffstats
path: root/schedutils/taskset.1.adoc
blob: 056b1ca301887c27ef9b9ee09b7fa5ef31eb9a67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
//po4a: entry man manual
////
taskset(1) manpage
Copyright (C) 2004 Robert Love

This is free documentation; you can redistribute it and/or
modify it under the terms of the GNU General Public License,
version 2, as published by the Free Software Foundation.

The GNU General Public License's references to "object code"
and "executables" are to be interpreted as the output of any
document formatting or typesetting system, including
intermediate and printed output.

This manual is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
////
= taskset(1)
:doctype: manpage
:man manual: User Commands
:man source: util-linux {release-version}
:page-layout: base
:command: taskset
:colon: :
:copyright: ©

== NAME

taskset - set or retrieve a process's CPU affinity

== SYNOPSIS

*taskset* [options] _mask command_ [_argument_...]

*taskset* [options] *-p* [_mask_] _pid_

== DESCRIPTION

The *taskset* command is used to set or retrieve the CPU affinity of a running process given its _pid_, or to launch a new _command_ with a given CPU affinity. CPU affinity is a scheduler property that "bonds" a process to a given set of CPUs on the system. The Linux scheduler will honor the given CPU affinity and the process will not run on any other CPUs. Note that the Linux scheduler also supports natural CPU affinity: the scheduler attempts to keep processes on the same CPU as long as practical for performance reasons. Therefore, forcing a specific CPU affinity is useful only in certain applications.   The affinity of some processes like kernel per-CPU threads cannot be set.

The CPU affinity is represented as a bitmask, with the lowest order bit corresponding to the first logical CPU and the highest order bit corresponding 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 may be specified in hexadecimal (with or without a leading "0x"), or as a CPU list with the *--cpu-list* option. For example,

*0x00000001*::
is processor #0,

*0x00000003*::
is processors #0 and #1,

*FFFFFFFF*::
is processors #0 through #31,

*0x32*::
is processors #1, #4, and #5,

*--cpu-list 0-2,6*::
is processors #0, #1, #2, and #6.

*--cpu-list 0-10:2*::
is processors #0, #2, #4, #6, #8 and #10. The suffix ":N" specifies stride in the range, for example 0-10:3 is interpreted as 0,3,6,9 list.

When *taskset* returns, it is guaranteed that the given program has been scheduled to a legal CPU.

== OPTIONS

*-a*, *--all-tasks*::
Set or retrieve the CPU affinity of all the tasks (threads) for a given PID.

*-c*, *--cpu-list*::
Interpret _mask_ as numerical list of processors instead of a bitmask. Numbers are separated by commas and may include ranges. For example: *0,5,8-11*.

*-p*, *--pid*::
Operate on an existing PID and do not launch a new task.

include::man-common/help-version.adoc[]

== USAGE

//TRANSLATORS: Keep {colon} untranslated.
The default behavior is to run a new command with a given affinity mask{colon}::
*taskset* _mask_ _command_ [_arguments_]

//TRANSLATORS: Keep {colon} untranslated.
You can also retrieve the CPU affinity of an existing task{colon}::
*taskset -p* _pid_

//TRANSLATORS: Keep {colon} untranslated.
Or set it{colon}::
*taskset -p* _mask pid_

//TRANSLATORS: Keep {colon} untranslated.
When a cpu-list is specified for an existing process, the *-p* and *-c* options must be grouped together{colon}::
*taskset -pc* _cpu-list pid_

//TRANSLATORS: Keep {colon} untranslated.
The *--cpu-list* form is applicable only for launching new commands{colon}::
*taskset --cpu-list* _cpu-list command_

== PERMISSIONS

A user can change the CPU affinity of a process belonging to the same user. A user must possess *CAP_SYS_NICE* to change the CPU affinity of a process belonging to another user. A user can retrieve the affinity mask of any process.

== RETURN VALUE

*taskset* returns 0 in its affinity-getting mode as long as the provided PID exists.

*taskset* returns 0 in its affinity-setting mode as long as the underlying *sched_setaffinity*(2) system call does.  The success of the command does not guarantee that the specified thread has actually migrated to the indicated CPU(s), but only that the thread will not migrate to a CPU outside the new affinity mask.  For example, the affinity of the kernel thread kswapd can be set, but the thread may not immediately migrate and is not guaranteed to ever do so:

$ ps ax -o comm,psr,pid | grep kswapd +
kswapd0           4      82 +
$ sudo taskset -p 1 82 +
pid 82's current affinity mask: 1 +
pid 82's new affinity mask: 1 +
$ echo $? +
0 +
$ ps ax -o comm,psr,pid | grep kswapd +
kswapd0           4      82 +
$ taskset -p 82 +
pid 82's current affinity mask: 1 +

In contrast, when the user specifies an illegal affinity, taskset will print an error and return 1:

$ ps ax -o comm,psr,pid | grep ksoftirqd/0 +
ksoftirqd/0       0      14 +
$ sudo taskset -p 1 14 +
pid 14's current affinity mask: 1 +
taskset: failed to set pid 14's affinity: Invalid argument +
$ echo $? +
1 +

== AUTHORS

Written by Robert M. Love.

== COPYRIGHT

//TRANSLATORS: Keep {copyright} untranslated.
Copyright {copyright} 2004 Robert M. Love. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

== SEE ALSO

*chrt*(1),
*nice*(1),
*renice*(1),
*sched_getaffinity*(2),
*sched_setaffinity*(2)

See *sched*(7) for a description of the Linux scheduling scheme.

include::man-common/bugreports.adoc[]

include::man-common/footer.adoc[]

ifdef::translation[]
include::man-common/translation.adoc[]
endif::[]