]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/systemd.resource-control.xml
test: mark plymouth as optional dependency
[thirdparty/systemd.git] / man / systemd.resource-control.xml
CommitLineData
514094f9 1<?xml version='1.0'?>
d868475a 2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
12b42c76 3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
d868475a
ZJS
4
5<!--
572eb058 6 SPDX-License-Identifier: LGPL-2.1+
d868475a
ZJS
7-->
8
3fde5f30 9<refentry id="systemd.resource-control">
d868475a 10 <refentryinfo>
3fde5f30 11 <title>systemd.resource-control</title>
d868475a 12 <productname>systemd</productname>
d868475a
ZJS
13 </refentryinfo>
14
15 <refmeta>
3fde5f30 16 <refentrytitle>systemd.resource-control</refentrytitle>
d868475a
ZJS
17 <manvolnum>5</manvolnum>
18 </refmeta>
19
20 <refnamediv>
3fde5f30
LP
21 <refname>systemd.resource-control</refname>
22 <refpurpose>Resource control unit settings</refpurpose>
d868475a
ZJS
23 </refnamediv>
24
25 <refsynopsisdiv>
26 <para>
27 <filename><replaceable>slice</replaceable>.slice</filename>,
28 <filename><replaceable>scope</replaceable>.scope</filename>,
29 <filename><replaceable>service</replaceable>.service</filename>,
30 <filename><replaceable>socket</replaceable>.socket</filename>,
31 <filename><replaceable>mount</replaceable>.mount</filename>,
32 <filename><replaceable>swap</replaceable>.swap</filename>
33 </para>
34 </refsynopsisdiv>
35
36 <refsect1>
37 <title>Description</title>
38
c7458f93
LP
39 <para>Unit configuration files for services, slices, scopes, sockets, mount points, and swap devices share a subset
40 of configuration options for resource control of spawned processes. Internally, this relies on the Linux Control
41 Groups (cgroups) kernel concept for organizing processes in a hierarchical tree of named groups for the purpose of
42 resource management.</para>
9365b048 43
d868475a
ZJS
44 <para>This man page lists the configuration options shared by
45 those six unit types. See
46 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>
47 for the common options of all unit configuration files, and
48 <citerefentry><refentrytitle>systemd.slice</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
49 <citerefentry><refentrytitle>systemd.scope</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
50 <citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
51 <citerefentry><refentrytitle>systemd.socket</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
52 <citerefentry><refentrytitle>systemd.mount</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
53 and
54 <citerefentry><refentrytitle>systemd.swap</refentrytitle><manvolnum>5</manvolnum></citerefentry>
55 for more information on the specific unit configuration files. The
3fde5f30 56 resource control configuration options are configured in the
d868475a
ZJS
57 [Slice], [Scope], [Service], [Socket], [Mount], or [Swap]
58 sections, depending on the unit type.</para>
ea021cc3 59
74b47bbd
ZJS
60 <para>In addition, options which control resources available to programs
61 <emphasis>executed</emphasis> by systemd are listed in
62 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
63 Those options complement options listed here.</para>
64
ea021cc3 65 <para>See the <ulink
28a0ad81 66 url="https://www.freedesktop.org/wiki/Software/systemd/ControlGroupInterface/">New
72f4d966 67 Control Group Interfaces</ulink> for an introduction on how to make
ea021cc3 68 use of resource control APIs from programs.</para>
d868475a
ZJS
69 </refsect1>
70
c129bd5d 71 <refsect1>
45f09f93 72 <title>Implicit Dependencies</title>
c129bd5d 73
45f09f93
JL
74 <para>The following dependencies are implicitly added:</para>
75
76 <itemizedlist>
77 <listitem><para>Units with the <varname>Slice=</varname> setting set automatically acquire
78 <varname>Requires=</varname> and <varname>After=</varname> dependencies on the specified
79 slice unit.</para></listitem>
80 </itemizedlist>
c129bd5d
LP
81 </refsect1>
82
45f09f93
JL
83 <!-- We don't have any default dependency here. -->
84
538b4852
TH
85 <refsect1>
86 <title>Unified and Legacy Control Group Hierarchies</title>
87
65c1cdb2
MR
88 <para>The unified control group hierarchy is the new version of kernel control group interface, see <ulink
89 url="https://www.kernel.org/doc/Documentation/cgroup-v2.txt">cgroup-v2.txt</ulink>. Depending on the resource type,
90 there are differences in resource control capabilities. Also, because of interface changes, some resource types
91 have separate set of options on the unified hierarchy.</para>
538b4852
TH
92
93 <para>
94 <variablelist>
66ebf6c0 95
538b4852 96 <varlistentry>
66ebf6c0 97 <term><option>CPU</option></term>
538b4852 98 <listitem>
66ebf6c0
TH
99 <para><varname>CPUWeight=</varname> and <varname>StartupCPUWeight=</varname> replace
100 <varname>CPUShares=</varname> and <varname>StartupCPUShares=</varname>, respectively.</para>
101
102 <para>The <literal>cpuacct</literal> controller does not exist separately on the unified hierarchy.</para>
538b4852
TH
103 </listitem>
104 </varlistentry>
66ebf6c0 105
da4d897e
TH
106 <varlistentry>
107 <term><option>Memory</option></term>
108 <listitem>
328583db
LP
109 <para><varname>MemoryMax=</varname> replaces <varname>MemoryLimit=</varname>. <varname>MemoryLow=</varname>
110 and <varname>MemoryHigh=</varname> are effective only on unified hierarchy.</para>
da4d897e
TH
111 </listitem>
112 </varlistentry>
66ebf6c0
TH
113
114 <varlistentry>
115 <term><option>IO</option></term>
116 <listitem>
c12ad58c 117 <para><varname>IO</varname> prefixed settings are a superset of and replace <varname>BlockIO</varname>
66ebf6c0
TH
118 prefixed ones. On unified hierarchy, IO resource control also applies to buffered writes.</para>
119 </listitem>
120 </varlistentry>
121
538b4852
TH
122 </variablelist>
123 </para>
124
7d862ab8
TH
125 <para>To ease the transition, there is best-effort translation between the two versions of settings. For each
126 controller, if any of the settings for the unified hierarchy are present, all settings for the legacy hierarchy are
127 ignored. If the resulting settings are for the other type of hierarchy, the configurations are translated before
128 application.</para>
c23b2c70
MR
129
130 <para>Legacy control group hierarchy (see <ulink
131 url="https://www.kernel.org/doc/Documentation/cgroup-v1/cgroups.txt">cgroups.txt</ulink>), also called cgroup-v1,
0d5299ef 132 doesn't allow safe delegation of controllers to unprivileged processes. If the system uses the legacy control group
c23b2c70
MR
133 hierarchy, resource control is disabled for systemd user instance, see
134 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>.
135 </para>
538b4852
TH
136 </refsect1>
137
d868475a
ZJS
138 <refsect1>
139 <title>Options</title>
140
141 <para>Units of the types listed above can have settings
3fde5f30 142 for resource control configuration:</para>
d868475a
ZJS
143
144 <variablelist class='unit-directives'>
d868475a
ZJS
145
146 <varlistentry>
61ad59b1 147 <term><varname>CPUAccounting=</varname></term>
d868475a
ZJS
148
149 <listitem>
61ad59b1
LP
150 <para>Turn on CPU usage accounting for this unit. Takes a
151 boolean argument. Note that turning on CPU accounting for
03a7b521 152 one unit will also implicitly turn it on for all units
085afe36
LP
153 contained in the same slice and for all its parent slices
154 and the units contained therein. The system default for this
03a7b521 155 setting may be controlled with
085afe36
LP
156 <varname>DefaultCPUAccounting=</varname> in
157 <citerefentry><refentrytitle>systemd-system.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
d868475a
ZJS
158 </listitem>
159 </varlistentry>
160
66ebf6c0
TH
161 <varlistentry>
162 <term><varname>CPUWeight=<replaceable>weight</replaceable></varname></term>
163 <term><varname>StartupCPUWeight=<replaceable>weight</replaceable></varname></term>
164
165 <listitem>
166 <para>Assign the specified CPU time weight to the processes executed, if the unified control group hierarchy
167 is used on the system. These options take an integer value and control the <literal>cpu.weight</literal>
168 control group attribute. The allowed range is 1 to 10000. Defaults to 100. For details about this control
169 group attribute, see <ulink
170 url="https://www.kernel.org/doc/Documentation/cgroup-v2.txt">cgroup-v2.txt</ulink> and <ulink
171 url="https://www.kernel.org/doc/Documentation/scheduler/sched-design-CFS.txt">sched-design-CFS.txt</ulink>.
172 The available CPU time is split up among all units within one slice relative to their CPU time weight.</para>
173
174 <para>While <varname>StartupCPUWeight=</varname> only applies to the startup phase of the system,
175 <varname>CPUWeight=</varname> applies to normal runtime of the system, and if the former is not set also to
176 the startup phase. Using <varname>StartupCPUWeight=</varname> allows prioritizing specific services at
177 boot-up differently than during normal runtime.</para>
178
7d862ab8 179 <para>These settings replace <varname>CPUShares=</varname> and <varname>StartupCPUShares=</varname>.</para>
b2f8b02e
LP
180 </listitem>
181 </varlistentry>
182
183 <varlistentry>
184 <term><varname>CPUQuota=</varname></term>
185
186 <listitem>
66ebf6c0
TH
187 <para>Assign the specified CPU time quota to the processes executed. Takes a percentage value, suffixed with
188 "%". The percentage specifies how much CPU time the unit shall get at maximum, relative to the total CPU time
189 available on one CPU. Use values &gt; 100% for allotting CPU time on more than one CPU. This controls the
190 <literal>cpu.max</literal> attribute on the unified control group hierarchy and
191 <literal>cpu.cfs_quota_us</literal> on legacy. For details about these control group attributes, see <ulink
192 url="https://www.kernel.org/doc/Documentation/cgroup-v2.txt">cgroup-v2.txt</ulink> and <ulink
49bdfaba 193 url="https://www.kernel.org/doc/Documentation/scheduler/sched-bwc.txt">sched-bwc.txt</ulink>.</para>
b2f8b02e 194
66ebf6c0
TH
195 <para>Example: <varname>CPUQuota=20%</varname> ensures that the executed processes will never get more than
196 20% CPU time on one CPU.</para>
b2f8b02e 197
b2f8b02e
LP
198 </listitem>
199 </varlistentry>
200
61ad59b1
LP
201 <varlistentry>
202 <term><varname>MemoryAccounting=</varname></term>
203
204 <listitem>
205 <para>Turn on process and kernel memory accounting for this
206 unit. Takes a boolean argument. Note that turning on memory
03a7b521
LP
207 accounting for one unit will also implicitly turn it on for
208 all units contained in the same slice and for all its parent
209 slices and the units contained therein. The system default
210 for this setting may be controlled with
085afe36
LP
211 <varname>DefaultMemoryAccounting=</varname> in
212 <citerefentry><refentrytitle>systemd-system.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
61ad59b1
LP
213 </listitem>
214 </varlistentry>
215
48422635
TH
216 <varlistentry>
217 <term><varname>MemoryMin=<replaceable>bytes</replaceable></varname></term>
218
219 <listitem>
220 <para>Specify the memory usage protection of the executed processes in this unit. If the memory usages of
221 this unit and all its ancestors are below their minimum boundaries, this unit's memory won't be reclaimed.</para>
222
223 <para>Takes a memory size in bytes. If the value is suffixed with K, M, G or T, the specified memory size is
224 parsed as Kilobytes, Megabytes, Gigabytes, or Terabytes (with the base 1024), respectively. Alternatively, a
225 percentage value may be specified, which is taken relative to the installed physical memory on the
226 system. This controls the <literal>memory.min</literal> control group attribute. For details about this
227 control group attribute, see <ulink
228 url="https://www.kernel.org/doc/Documentation/cgroup-v2.txt">cgroup-v2.txt</ulink>.</para>
229
48422635
TH
230 <para>This setting is supported only if the unified control group hierarchy is used and disables
231 <varname>MemoryLimit=</varname>.</para>
232 </listitem>
233 </varlistentry>
234
da4d897e
TH
235 <varlistentry>
236 <term><varname>MemoryLow=<replaceable>bytes</replaceable></varname></term>
237
238 <listitem>
239 <para>Specify the best-effort memory usage protection of the executed processes in this unit. If the memory
240 usages of this unit and all its ancestors are below their low boundaries, this unit's memory won't be
241 reclaimed as long as memory can be reclaimed from unprotected units.</para>
242
243 <para>Takes a memory size in bytes. If the value is suffixed with K, M, G or T, the specified memory size is
875ae566
LP
244 parsed as Kilobytes, Megabytes, Gigabytes, or Terabytes (with the base 1024), respectively. Alternatively, a
245 percentage value may be specified, which is taken relative to the installed physical memory on the
246 system. This controls the <literal>memory.low</literal> control group attribute. For details about this
247 control group attribute, see <ulink
248 url="https://www.kernel.org/doc/Documentation/cgroup-v2.txt">cgroup-v2.txt</ulink>.</para>
da4d897e 249
7d862ab8
TH
250 <para>This setting is supported only if the unified control group hierarchy is used and disables
251 <varname>MemoryLimit=</varname>.</para>
da4d897e
TH
252 </listitem>
253 </varlistentry>
254
255 <varlistentry>
256 <term><varname>MemoryHigh=<replaceable>bytes</replaceable></varname></term>
257
258 <listitem>
259 <para>Specify the high limit on memory usage of the executed processes in this unit. Memory usage may go
260 above the limit if unavoidable, but the processes are heavily slowed down and memory is taken away
261 aggressively in such cases. This is the main mechanism to control memory usage of a unit.</para>
262
263 <para>Takes a memory size in bytes. If the value is suffixed with K, M, G or T, the specified memory size is
875ae566
LP
264 parsed as Kilobytes, Megabytes, Gigabytes, or Terabytes (with the base 1024), respectively. Alternatively, a
265 percentage value may be specified, which is taken relative to the installed physical memory on the
266 system. If assigned the
e57c9ce1 267 special value <literal>infinity</literal>, no memory limit is applied. This controls the
da4d897e
TH
268 <literal>memory.high</literal> control group attribute. For details about this control group attribute, see
269 <ulink url="https://www.kernel.org/doc/Documentation/cgroup-v2.txt">cgroup-v2.txt</ulink>.</para>
270
7d862ab8
TH
271 <para>This setting is supported only if the unified control group hierarchy is used and disables
272 <varname>MemoryLimit=</varname>.</para>
da4d897e
TH
273 </listitem>
274 </varlistentry>
275
276 <varlistentry>
277 <term><varname>MemoryMax=<replaceable>bytes</replaceable></varname></term>
278
279 <listitem>
280 <para>Specify the absolute limit on memory usage of the executed processes in this unit. If memory usage
281 cannot be contained under the limit, out-of-memory killer is invoked inside the unit. It is recommended to
282 use <varname>MemoryHigh=</varname> as the main control mechanism and use <varname>MemoryMax=</varname> as the
283 last line of defense.</para>
284
285 <para>Takes a memory size in bytes. If the value is suffixed with K, M, G or T, the specified memory size is
875ae566
LP
286 parsed as Kilobytes, Megabytes, Gigabytes, or Terabytes (with the base 1024), respectively. Alternatively, a
287 percentage value may be specified, which is taken relative to the installed physical memory on the system. If
288 assigned the special value <literal>infinity</literal>, no memory limit is applied. This controls the
da4d897e
TH
289 <literal>memory.max</literal> control group attribute. For details about this control group attribute, see
290 <ulink url="https://www.kernel.org/doc/Documentation/cgroup-v2.txt">cgroup-v2.txt</ulink>.</para>
291
7d862ab8 292 <para>This setting replaces <varname>MemoryLimit=</varname>.</para>
da4d897e
TH
293 </listitem>
294 </varlistentry>
295
96e131ea
WC
296 <varlistentry>
297 <term><varname>MemorySwapMax=<replaceable>bytes</replaceable></varname></term>
298
299 <listitem>
300 <para>Specify the absolute limit on swap usage of the executed processes in this unit.</para>
301
302 <para>Takes a swap size in bytes. If the value is suffixed with K, M, G or T, the specified swap size is
303 parsed as Kilobytes, Megabytes, Gigabytes, or Terabytes (with the base 1024), respectively. If assigned the
304 special value <literal>infinity</literal>, no swap limit is applied. This controls the
305 <literal>memory.swap.max</literal> control group attribute. For details about this control group attribute,
306 see <ulink url="https://www.kernel.org/doc/Documentation/cgroup-v2.txt">cgroup-v2.txt</ulink>.</para>
307
7d862ab8
TH
308 <para>This setting is supported only if the unified control group hierarchy is used and disables
309 <varname>MemoryLimit=</varname>.</para>
d868475a
ZJS
310 </listitem>
311 </varlistentry>
312
03a7b521
LP
313 <varlistentry>
314 <term><varname>TasksAccounting=</varname></term>
315
316 <listitem>
317 <para>Turn on task accounting for this unit. Takes a
318 boolean argument. If enabled, the system manager will keep
319 track of the number of tasks in the unit. The number of
320 tasks accounted this way includes both kernel threads and
321 userspace processes, with each thread counting
322 individually. Note that turning on tasks accounting for one
323 unit will also implicitly turn it on for all units contained
324 in the same slice and for all its parent slices and the
325 units contained therein. The system default for this setting
326 may be controlled with
327 <varname>DefaultTasksAccounting=</varname> in
328 <citerefentry><refentrytitle>systemd-system.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
329 </listitem>
330 </varlistentry>
331
332 <varlistentry>
333 <term><varname>TasksMax=<replaceable>N</replaceable></varname></term>
334
335 <listitem>
83f8e808
LP
336 <para>Specify the maximum number of tasks that may be created in the unit. This ensures that the number of
337 tasks accounted for the unit (see above) stays below a specific limit. This either takes an absolute number
338 of tasks or a percentage value that is taken relative to the configured maximum number of tasks on the
339 system. If assigned the special value <literal>infinity</literal>, no tasks limit is applied. This controls
340 the <literal>pids.max</literal> control group attribute. For details about this control group attribute, see
341 <ulink url="https://www.kernel.org/doc/Documentation/cgroup-v1/pids.txt">pids.txt</ulink>.</para>
03a7b521 342
be60dd3e 343 <para>The
0af20ea2
LP
344 system default for this setting may be controlled with
345 <varname>DefaultTasksMax=</varname> in
346 <citerefentry><refentrytitle>systemd-system.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
03a7b521
LP
347 </listitem>
348 </varlistentry>
349
13c31542
TH
350 <varlistentry>
351 <term><varname>IOAccounting=</varname></term>
352
353 <listitem>
0069a0dd
LP
354 <para>Turn on Block I/O accounting for this unit, if the unified control group hierarchy is used on the
355 system. Takes a boolean argument. Note that turning on block I/O accounting for one unit will also implicitly
356 turn it on for all units contained in the same slice and all for its parent slices and the units contained
357 therein. The system default for this setting may be controlled with <varname>DefaultIOAccounting=</varname>
358 in
13c31542 359 <citerefentry><refentrytitle>systemd-system.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
0069a0dd 360
7d862ab8
TH
361 <para>This setting replaces <varname>BlockIOAccounting=</varname> and disables settings prefixed with
362 <varname>BlockIO</varname> or <varname>StartupBlockIO</varname>.</para>
13c31542
TH
363 </listitem>
364 </varlistentry>
365
366 <varlistentry>
367 <term><varname>IOWeight=<replaceable>weight</replaceable></varname></term>
368 <term><varname>StartupIOWeight=<replaceable>weight</replaceable></varname></term>
369
370 <listitem>
0069a0dd
LP
371 <para>Set the default overall block I/O weight for the executed processes, if the unified control group
372 hierarchy is used on the system. Takes a single weight value (between 1 and 10000) to set the default block
373 I/O weight. This controls the <literal>io.weight</literal> control group attribute, which defaults to
374 100. For details about this control group attribute, see <ulink
375 url="https://www.kernel.org/doc/Documentation/cgroup-v2.txt">cgroup-v2.txt</ulink>. The available I/O
376 bandwidth is split up among all units within one slice relative to their block I/O weight.</para>
13c31542
TH
377
378 <para>While <varname>StartupIOWeight=</varname> only applies
379 to the startup phase of the system,
380 <varname>IOWeight=</varname> applies to the later runtime of
381 the system, and if the former is not set also to the startup
382 phase. This allows prioritizing specific services at boot-up
383 differently than during runtime.</para>
384
7d862ab8
TH
385 <para>These settings replace <varname>BlockIOWeight=</varname> and <varname>StartupBlockIOWeight=</varname>
386 and disable settings prefixed with <varname>BlockIO</varname> or <varname>StartupBlockIO</varname>.</para>
13c31542
TH
387 </listitem>
388 </varlistentry>
389
390 <varlistentry>
391 <term><varname>IODeviceWeight=<replaceable>device</replaceable> <replaceable>weight</replaceable></varname></term>
392
393 <listitem>
0069a0dd
LP
394 <para>Set the per-device overall block I/O weight for the executed processes, if the unified control group
395 hierarchy is used on the system. Takes a space-separated pair of a file path and a weight value to specify
6ae4283c
TH
396 the device specific weight value, between 1 and 10000. (Example: <literal>/dev/sda 1000</literal>). The file
397 path may be specified as path to a block device node or as any other file, in which case the backing block
398 device of the file system of the file is determined. This controls the <literal>io.weight</literal> control
399 group attribute, which defaults to 100. Use this option multiple times to set weights for multiple devices.
400 For details about this control group attribute, see <ulink
13c31542
TH
401 url="https://www.kernel.org/doc/Documentation/cgroup-v2.txt">cgroup-v2.txt</ulink>.</para>
402
7d862ab8
TH
403 <para>This setting replaces <varname>BlockIODeviceWeight=</varname> and disables settings prefixed with
404 <varname>BlockIO</varname> or <varname>StartupBlockIO</varname>.</para>
13c31542
TH
405 </listitem>
406 </varlistentry>
407
408 <varlistentry>
409 <term><varname>IOReadBandwidthMax=<replaceable>device</replaceable> <replaceable>bytes</replaceable></varname></term>
410 <term><varname>IOWriteBandwidthMax=<replaceable>device</replaceable> <replaceable>bytes</replaceable></varname></term>
411
412 <listitem>
0069a0dd
LP
413 <para>Set the per-device overall block I/O bandwidth maximum limit for the executed processes, if the unified
414 control group hierarchy is used on the system. This limit is not work-conserving and the executed processes
415 are not allowed to use more even if the device has idle capacity. Takes a space-separated pair of a file
416 path and a bandwidth value (in bytes per second) to specify the device specific bandwidth. The file path may
417 be a path to a block device node, or as any other file in which case the backing block device of the file
418 system of the file is used. If the bandwidth is suffixed with K, M, G, or T, the specified bandwidth is
419 parsed as Kilobytes, Megabytes, Gigabytes, or Terabytes, respectively, to the base of 1000. (Example:
420 "/dev/disk/by-path/pci-0000:00:1f.2-scsi-0:0:0:0 5M"). This controls the <literal>io.max</literal> control
421 group attributes. Use this option multiple times to set bandwidth limits for multiple devices. For details
422 about this control group attribute, see <ulink
13c31542
TH
423 url="https://www.kernel.org/doc/Documentation/cgroup-v2.txt">cgroup-v2.txt</ulink>.
424 </para>
425
7d862ab8
TH
426 <para>These settings replace <varname>BlockIOReadBandwidth=</varname> and
427 <varname>BlockIOWriteBandwidth=</varname> and disable settings prefixed with <varname>BlockIO</varname> or
428 <varname>StartupBlockIO</varname>.</para>
13c31542
TH
429 </listitem>
430 </varlistentry>
431
ac06a0cf
TH
432 <varlistentry>
433 <term><varname>IOReadIOPSMax=<replaceable>device</replaceable> <replaceable>IOPS</replaceable></varname></term>
434 <term><varname>IOWriteIOPSMax=<replaceable>device</replaceable> <replaceable>IOPS</replaceable></varname></term>
435
436 <listitem>
437 <para>Set the per-device overall block I/O IOs-Per-Second maximum limit for the executed processes, if the
438 unified control group hierarchy is used on the system. This limit is not work-conserving and the executed
439 processes are not allowed to use more even if the device has idle capacity. Takes a space-separated pair of
440 a file path and an IOPS value to specify the device specific IOPS. The file path may be a path to a block
441 device node, or as any other file in which case the backing block device of the file system of the file is
442 used. If the IOPS is suffixed with K, M, G, or T, the specified IOPS is parsed as KiloIOPS, MegaIOPS,
443 GigaIOPS, or TeraIOPS, respectively, to the base of 1000. (Example:
444 "/dev/disk/by-path/pci-0000:00:1f.2-scsi-0:0:0:0 1K"). This controls the <literal>io.max</literal> control
445 group attributes. Use this option multiple times to set IOPS limits for multiple devices. For details about
446 this control group attribute, see <ulink
447 url="https://www.kernel.org/doc/Documentation/cgroup-v2.txt">cgroup-v2.txt</ulink>.
448 </para>
449
7d862ab8
TH
450 <para>These settings are supported only if the unified control group hierarchy is used and disable settings
451 prefixed with <varname>BlockIO</varname> or <varname>StartupBlockIO</varname>.</para>
d868475a 452 </listitem>
6ae4283c
TH
453 </varlistentry>
454
455 <varlistentry>
456 <term><varname>IODeviceLatencyTargetSec=<replaceable>device</replaceable> <replaceable>target</replaceable></varname></term>
457
458 <listitem>
459 <para>Set the per-device average target I/O latency for the executed processes, if the unified control group
460 hierarchy is used on the system. Takes a file path and a timespan separated by a space to specify
461 the device specific latency target. (Example: "/dev/sda 25ms"). The file path may be specified
462 as path to a block device node or as any other file, in which case the backing block device of the file
463 system of the file is determined. This controls the <literal>io.latency</literal> control group
464 attribute. Use this option multiple times to set latency target for multiple devices. For details about this
465 control group attribute, see <ulink
466 url="https://www.kernel.org/doc/Documentation/cgroup-v2.txt">cgroup-v2.txt</ulink>.</para>
467
964c4eda 468 <para>Implies <literal>IOAccounting=yes</literal>.</para>
6ae4283c
TH
469
470 <para>These settings are supported only if the unified control group hierarchy is used.</para>
471 </listitem>
d868475a
ZJS
472 </varlistentry>
473
8d8631d4
DM
474 <varlistentry>
475 <term><varname>IPAccounting=</varname></term>
476
477 <listitem>
478 <para>Takes a boolean argument. If true, turns on IPv4 and IPv6 network traffic accounting for packets sent
479 or received by the unit. When this option is turned on, all IPv4 and IPv6 sockets created by any process of
2f75b05c
ZJS
480 the unit are accounted for.</para>
481
482 <para>When this option is used in socket units, it applies to all IPv4 and IPv6 sockets
8d8631d4
DM
483 associated with it (including both listening and connection sockets where this applies). Note that for
484 socket-activated services, this configuration setting and the accounting data of the service unit and the
485 socket unit are kept separate, and displayed separately. No propagation of the setting and the collected
486 statistics is done, in either direction. Moreover, any traffic sent or received on any of the socket unit's
487 sockets is accounted to the socket unit — and never to the service unit it might have activated, even if the
2f75b05c
ZJS
488 socket is used by it.</para>
489
490 <para>The system default for this setting may be controlled with <varname>DefaultIPAccounting=</varname> in
8d8631d4
DM
491 <citerefentry><refentrytitle>systemd-system.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
492 </listitem>
493 </varlistentry>
494
495 <varlistentry>
dcfaecc7 496 <term><varname>IPAddressAllow=<replaceable>ADDRESS[/PREFIXLENGTH]…</replaceable></varname></term>
8d8631d4
DM
497 <term><varname>IPAddressDeny=<replaceable>ADDRESS[/PREFIXLENGTH]…</replaceable></varname></term>
498
499 <listitem>
500 <para>Turn on address range network traffic filtering for packets sent and received over AF_INET and AF_INET6
501 sockets. Both directives take a space separated list of IPv4 or IPv6 addresses, each optionally suffixed
502 with an address prefix length (separated by a <literal>/</literal> character). If the latter is omitted, the
503 address is considered a host address, i.e. the prefix covers the whole address (32 for IPv4, 128 for IPv6).
504 </para>
505
506 <para>The access lists configured with this option are applied to all sockets created by processes of this
507 unit (or in the case of socket units, associated with it). The lists are implicitly combined with any lists
508 configured for any of the parent slice units this unit might be a member of. By default all access lists are
509 empty. When configured the lists are enforced as follows:</para>
510
511 <itemizedlist>
512 <listitem><para>Access will be granted in case its destination/source address matches any entry in the
513 <varname>IPAddressAllow=</varname> setting.</para></listitem>
514
515 <listitem><para>Otherwise, access will be denied in case its destination/source address matches any entry
516 in the <varname>IPAddressDeny=</varname> setting.</para></listitem>
517
518 <listitem><para>Otherwise, access will be granted.</para></listitem>
519 </itemizedlist>
520
521 <para>In order to implement a whitelisting IP firewall, it is recommended to use a
522 <varname>IPAddressDeny=</varname><constant>any</constant> setting on an upper-level slice unit (such as the
523 root slice <filename>-.slice</filename> or the slice containing all system services
524 <filename>system.slice</filename> – see
525 <citerefentry><refentrytitle>systemd.special</refentrytitle><manvolnum>7</manvolnum></citerefentry> for
526 details on these slice units), plus individual per-service <varname>IPAddressAllow=</varname> lines
527 permitting network access to relevant services, and only them.</para>
528
529 <para>Note that for socket-activated services, the IP access list configured on the socket unit applies to
530 all sockets associated with it directly, but not to any sockets created by the ultimately activated services
531 for it. Conversely, the IP access list configured for the service is not applied to any sockets passed into
532 the service via socket activation. Thus, it is usually a good idea, to replicate the IP access lists on both
533 the socket and the service unit, however it often makes sense to maintain one list more open and the other
534 one more restricted, depending on the usecase.</para>
535
536 <para>If these settings are used multiple times in the same unit the specified lists are combined. If an
537 empty string is assigned to these settings the specific access list is reset and all previous settings undone.</para>
538
539 <para>In place of explicit IPv4 or IPv6 address and prefix length specifications a small set of symbolic
540 names may be used. The following names are defined:</para>
541
542 <table>
543 <title>Special address/network names</title>
544
545 <tgroup cols='3'>
546 <colspec colname='name'/>
547 <colspec colname='definition'/>
548 <colspec colname='meaning'/>
549
550 <thead>
551 <row>
552 <entry>Symbolic Name</entry>
553 <entry>Definition</entry>
554 <entry>Meaning</entry>
555 </row>
556 </thead>
557
558 <tbody>
559 <row>
560 <entry><constant>any</constant></entry>
561 <entry>0.0.0.0/0 ::/0</entry>
562 <entry>Any host</entry>
563 </row>
564
565 <row>
566 <entry><constant>localhost</constant></entry>
567 <entry>127.0.0.0/8 ::1/128</entry>
568 <entry>All addresses on the local loopback</entry>
569 </row>
570
571 <row>
572 <entry><constant>link-local</constant></entry>
573 <entry>169.254.0.0/16 fe80::/64</entry>
574 <entry>All link-local IP addresses</entry>
575 </row>
576
577 <row>
578 <entry><constant>multicast</constant></entry>
579 <entry>224.0.0.0/4 ff00::/8</entry>
580 <entry>All IP multicasting addresses</entry>
581 </row>
582 </tbody>
583 </tgroup>
584 </table>
585
586 <para>Note that these settings might not be supported on some systems (for example if eBPF control group
587 support is not enabled in the underlying kernel or container manager). These settings will have no effect in
588 that case. If compatibility with such systems is desired it is hence recommended to not exclusively rely on
589 them for IP security.</para>
590 </listitem>
591 </varlistentry>
592
d868475a
ZJS
593 <varlistentry>
594 <term><varname>DeviceAllow=</varname></term>
595
596 <listitem>
597 <para>Control access to specific device nodes by the
598 executed processes. Takes two space-separated strings: a
90060676
LP
599 device node specifier followed by a combination of
600 <constant>r</constant>, <constant>w</constant>,
601 <constant>m</constant> to control
d868475a 602 <emphasis>r</emphasis>eading, <emphasis>w</emphasis>riting,
90060676 603 or creation of the specific device node(s) by the unit
d868475a
ZJS
604 (<emphasis>m</emphasis>knod), respectively. This controls
605 the <literal>devices.allow</literal> and
606 <literal>devices.deny</literal> control group
90060676
LP
607 attributes. For details about these control group
608 attributes, see <ulink
c51fa947 609 url="https://www.kernel.org/doc/Documentation/cgroup-v1/devices.txt">devices.txt</ulink>.</para>
90060676
LP
610
611 <para>The device node specifier is either a path to a device
612 node in the file system, starting with
613 <filename>/dev/</filename>, or a string starting with either
614 <literal>char-</literal> or <literal>block-</literal>
615 followed by a device group name, as listed in
616 <filename>/proc/devices</filename>. The latter is useful to
617 whitelist all current and future devices belonging to a
e41969e3 618 specific device group at once. The device group is matched
1245e413 619 according to filename globbing rules, you may hence use the
e41969e3
LP
620 <literal>*</literal> and <literal>?</literal>
621 wildcards. Examples: <filename>/dev/sda5</filename> is a
622 path to a device node, referring to an ATA or SCSI block
90060676
LP
623 device. <literal>char-pts</literal> and
624 <literal>char-alsa</literal> are specifiers for all pseudo
e41969e3
LP
625 TTYs and all ALSA sound devices,
626 respectively. <literal>char-cpu/*</literal> is a specifier
627 matching all CPU related device groups.</para>
d868475a
ZJS
628 </listitem>
629 </varlistentry>
630
631 <varlistentry>
632 <term><varname>DevicePolicy=auto|closed|strict</varname></term>
633
634 <listitem>
635 <para>
636 Control the policy for allowing device access:
637 </para>
638 <variablelist>
639 <varlistentry>
640 <term><option>strict</option></term>
641 <listitem>
642 <para>means to only allow types of access that are
643 explicitly specified.</para>
644 </listitem>
645 </varlistentry>
646
647 <varlistentry>
648 <term><option>closed</option></term>
649 <listitem>
6a75304e 650 <para>in addition, allows access to standard pseudo
d868475a
ZJS
651 devices including
652 <filename>/dev/null</filename>,
653 <filename>/dev/zero</filename>,
654 <filename>/dev/full</filename>,
655 <filename>/dev/random</filename>, and
656 <filename>/dev/urandom</filename>.
657 </para>
658 </listitem>
659 </varlistentry>
660
661 <varlistentry>
662 <term><option>auto</option></term>
663 <listitem>
664 <para>
6a75304e 665 in addition, allows access to all devices if no
d868475a
ZJS
666 explicit <varname>DeviceAllow=</varname> is present.
667 This is the default.
668 </para>
669 </listitem>
670 </varlistentry>
671 </variablelist>
672 </listitem>
673 </varlistentry>
61ad59b1
LP
674
675 <varlistentry>
676 <term><varname>Slice=</varname></term>
677
678 <listitem>
679 <para>The name of the slice unit to place the unit
680 in. Defaults to <filename>system.slice</filename> for all
dc7adf20
LP
681 non-instantiated units of all unit types (except for slice
682 units themselves see below). Instance units are by default
683 placed in a subslice of <filename>system.slice</filename>
684 that is named after the template name.</para>
685
686 <para>This option may be used to arrange systemd units in a
687 hierarchy of slices each of which might have resource
688 settings applied.</para>
61ad59b1 689
fbce1139 690 <para>For units of type slice, the only accepted value for
61ad59b1 691 this setting is the parent slice. Since the name of a slice
fbce1139 692 unit implies the parent slice, it is hence redundant to ever
61ad59b1 693 set this parameter directly for slice units.</para>
ae0a5fb1
LP
694
695 <para>Special care should be taken when relying on the default slice assignment in templated service units
696 that have <varname>DefaultDependencies=no</varname> set, see
697 <citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry>, section
45f09f93 698 "Default Dependencies" for details.</para>
ae0a5fb1 699
61ad59b1
LP
700 </listitem>
701 </varlistentry>
702
a931ad47
LP
703 <varlistentry>
704 <term><varname>Delegate=</varname></term>
705
706 <listitem>
a9f01ad1
LP
707 <para>Turns on delegation of further resource control partitioning to processes of the unit. Units where this
708 is enabled may create and manage their own private subhierarchy of control groups below the control group of
709 the unit itself. For unprivileged services (i.e. those using the <varname>User=</varname> setting) the unit's
710 control group will be made accessible to the relevant user. When enabled the service manager will refrain
711 from manipulating control groups or moving processes below the unit's control group, so that a clear concept
712 of ownership is established: the control group tree above the unit's control group (i.e. towards the root
713 control group) is owned and managed by the service manager of the host, while the control group tree below
714 the unit's control group is owned and managed by the unit itself. Takes either a boolean argument or a list
715 of control group controller names. If true, delegation is turned on, and all supported controllers are
716 enabled for the unit, making them available to the unit's processes for management. If false, delegation is
717 turned off entirely (and no additional controllers are enabled). If set to a list of controllers, delegation
99f3baa9
LP
718 is turned on, and the specified controllers are enabled for the unit. Note that additional controllers than
719 the ones specified might be made available as well, depending on configuration of the containing slice unit
720 or other units contained in it. Note that assigning the empty string will enable delegation, but reset the
721 list of controllers, all assignments prior to this will have no effect. Defaults to false.</para>
a9f01ad1
LP
722
723 <para>Note that controller delegation to less privileged code is only safe on the unified control group
724 hierarchy. Accordingly, access to the specified controllers will not be granted to unprivileged services on
725 the legacy hierarchy, even when requested.</para>
726
727 <para>The following controller names may be specified: <option>cpu</option>, <option>cpuacct</option>,
728 <option>io</option>, <option>blkio</option>, <option>memory</option>, <option>devices</option>,
729 <option>pids</option>. Not all of these controllers are available on all kernels however, and some are
730 specific to the unified hierarchy while others are specific to the legacy hierarchy. Also note that the
731 kernel might support further controllers, which aren't covered here yet as delegation is either not supported
732 at all for them or not defined cleanly.</para>
077c40bc
LP
733
734 <para>For further details on the delegation model consult <ulink
735 url="https://systemd.io/CGROUP_DELEGATION">Control Group APIs and Delegation</ulink>.</para>
a931ad47
LP
736 </listitem>
737 </varlistentry>
738
c72703e2
CD
739 <varlistentry>
740 <term><varname>DisableControllers=</varname></term>
741
742 <listitem>
743 <para>Disables controllers from being enabled for a unit's children. If a controller listed is already in use
744 in its subtree, the controller will be removed from the subtree. This can be used to avoid child units being
745 able to implicitly or explicitly enable a controller. Defaults to not disabling any controllers.</para>
746
747 <para>It may not be possible to successfully disable a controller if the unit or any child of the unit in
748 question delegates controllers to its children, as any delegated subtree of the cgroup hierarchy is unmanaged
749 by systemd.</para>
750
751 <para>Multiple controllers may be specified, separated by spaces. You may also pass
752 <varname>DisableControllers=</varname> multiple times, in which case each new instance adds another controller
753 to disable. Passing <varname>DisableControllers=</varname> by itself with no controller name present resets
754 the disabled controller list.</para>
755
756 <para>Valid controllers are <option>cpu</option>, <option>cpuacct</option>, <option>io</option>,
757 <option>blkio</option>, <option>memory</option>, <option>devices</option>, and <option>pids</option>.</para>
758 </listitem>
759 </varlistentry>
d868475a
ZJS
760 </variablelist>
761 </refsect1>
762
7d862ab8
TH
763 <refsect1>
764 <title>Deprecated Options</title>
765
766 <para>The following options are deprecated. Use the indicated superseding options instead:</para>
767
768 <variablelist class='unit-directives'>
769
770 <varlistentry>
771 <term><varname>CPUShares=<replaceable>weight</replaceable></varname></term>
772 <term><varname>StartupCPUShares=<replaceable>weight</replaceable></varname></term>
773
774 <listitem>
775 <para>Assign the specified CPU time share weight to the processes executed. These options take an integer
776 value and control the <literal>cpu.shares</literal> control group attribute. The allowed range is 2 to
777 262144. Defaults to 1024. For details about this control group attribute, see <ulink
778 url="https://www.kernel.org/doc/Documentation/scheduler/sched-design-CFS.txt">sched-design-CFS.txt</ulink>.
779 The available CPU time is split up among all units within one slice relative to their CPU time share
780 weight.</para>
781
782 <para>While <varname>StartupCPUShares=</varname> only applies to the startup phase of the system,
783 <varname>CPUShares=</varname> applies to normal runtime of the system, and if the former is not set also to
784 the startup phase. Using <varname>StartupCPUShares=</varname> allows prioritizing specific services at
785 boot-up differently than during normal runtime.</para>
786
964c4eda 787 <para>Implies <literal>CPUAccounting=yes</literal>.</para>
7d862ab8
TH
788
789 <para>These settings are deprecated. Use <varname>CPUWeight=</varname> and
790 <varname>StartupCPUWeight=</varname> instead.</para>
791 </listitem>
792 </varlistentry>
793
794 <varlistentry>
795 <term><varname>MemoryLimit=<replaceable>bytes</replaceable></varname></term>
796
797 <listitem>
798 <para>Specify the limit on maximum memory usage of the executed processes. The limit specifies how much
799 process and kernel memory can be used by tasks in this unit. Takes a memory size in bytes. If the value is
800 suffixed with K, M, G or T, the specified memory size is parsed as Kilobytes, Megabytes, Gigabytes, or
801 Terabytes (with the base 1024), respectively. Alternatively, a percentage value may be specified, which is
802 taken relative to the installed physical memory on the system. If assigned the special value
803 <literal>infinity</literal>, no memory limit is applied. This controls the
804 <literal>memory.limit_in_bytes</literal> control group attribute. For details about this control group
805 attribute, see <ulink
806 url="https://www.kernel.org/doc/Documentation/cgroup-v1/memory.txt">memory.txt</ulink>.</para>
807
964c4eda 808 <para>Implies <literal>MemoryAccounting=yes</literal>.</para>
7d862ab8
TH
809
810 <para>This setting is deprecated. Use <varname>MemoryMax=</varname> instead.</para>
811 </listitem>
812 </varlistentry>
813
814 <varlistentry>
815 <term><varname>BlockIOAccounting=</varname></term>
816
817 <listitem>
818 <para>Turn on Block I/O accounting for this unit, if the legacy control group hierarchy is used on the
819 system. Takes a boolean argument. Note that turning on block I/O accounting for one unit will also implicitly
820 turn it on for all units contained in the same slice and all for its parent slices and the units contained
821 therein. The system default for this setting may be controlled with
822 <varname>DefaultBlockIOAccounting=</varname> in
823 <citerefentry><refentrytitle>systemd-system.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
824
825 <para>This setting is deprecated. Use <varname>IOAccounting=</varname> instead.</para>
826 </listitem>
827 </varlistentry>
828
829 <varlistentry>
830 <term><varname>BlockIOWeight=<replaceable>weight</replaceable></varname></term>
831 <term><varname>StartupBlockIOWeight=<replaceable>weight</replaceable></varname></term>
832
833 <listitem><para>Set the default overall block I/O weight for the executed processes, if the legacy control
834 group hierarchy is used on the system. Takes a single weight value (between 10 and 1000) to set the default
835 block I/O weight. This controls the <literal>blkio.weight</literal> control group attribute, which defaults to
836 500. For details about this control group attribute, see <ulink
837 url="https://www.kernel.org/doc/Documentation/cgroup-v1/blkio-controller.txt">blkio-controller.txt</ulink>.
838 The available I/O bandwidth is split up among all units within one slice relative to their block I/O
839 weight.</para>
840
841 <para>While <varname>StartupBlockIOWeight=</varname> only
842 applies to the startup phase of the system,
843 <varname>BlockIOWeight=</varname> applies to the later runtime
844 of the system, and if the former is not set also to the
845 startup phase. This allows prioritizing specific services at
846 boot-up differently than during runtime.</para>
847
848 <para>Implies
964c4eda 849 <literal>BlockIOAccounting=yes</literal>.</para>
7d862ab8
TH
850
851 <para>These settings are deprecated. Use <varname>IOWeight=</varname> and <varname>StartupIOWeight=</varname>
852 instead.</para>
853
854 </listitem>
855 </varlistentry>
856
857 <varlistentry>
858 <term><varname>BlockIODeviceWeight=<replaceable>device</replaceable> <replaceable>weight</replaceable></varname></term>
859
860 <listitem>
861 <para>Set the per-device overall block I/O weight for the executed processes, if the legacy control group
862 hierarchy is used on the system. Takes a space-separated pair of a file path and a weight value to specify
863 the device specific weight value, between 10 and 1000. (Example: "/dev/sda 500"). The file path may be
864 specified as path to a block device node or as any other file, in which case the backing block device of the
865 file system of the file is determined. This controls the <literal>blkio.weight_device</literal> control group
866 attribute, which defaults to 1000. Use this option multiple times to set weights for multiple devices. For
867 details about this control group attribute, see <ulink
868 url="https://www.kernel.org/doc/Documentation/cgroup-v1/blkio-controller.txt">blkio-controller.txt</ulink>.</para>
869
870 <para>Implies
964c4eda 871 <literal>BlockIOAccounting=yes</literal>.</para>
7d862ab8
TH
872
873 <para>This setting is deprecated. Use <varname>IODeviceWeight=</varname> instead.</para>
874 </listitem>
875 </varlistentry>
876
877 <varlistentry>
878 <term><varname>BlockIOReadBandwidth=<replaceable>device</replaceable> <replaceable>bytes</replaceable></varname></term>
879 <term><varname>BlockIOWriteBandwidth=<replaceable>device</replaceable> <replaceable>bytes</replaceable></varname></term>
880
881 <listitem>
882 <para>Set the per-device overall block I/O bandwidth limit for the executed processes, if the legacy control
883 group hierarchy is used on the system. Takes a space-separated pair of a file path and a bandwidth value (in
884 bytes per second) to specify the device specific bandwidth. The file path may be a path to a block device
885 node, or as any other file in which case the backing block device of the file system of the file is used. If
886 the bandwidth is suffixed with K, M, G, or T, the specified bandwidth is parsed as Kilobytes, Megabytes,
887 Gigabytes, or Terabytes, respectively, to the base of 1000. (Example:
888 "/dev/disk/by-path/pci-0000:00:1f.2-scsi-0:0:0:0 5M"). This controls the
889 <literal>blkio.throttle.read_bps_device</literal> and <literal>blkio.throttle.write_bps_device</literal>
890 control group attributes. Use this option multiple times to set bandwidth limits for multiple devices. For
891 details about these control group attributes, see <ulink
892 url="https://www.kernel.org/doc/Documentation/cgroup-v1/blkio-controller.txt">blkio-controller.txt</ulink>.
893 </para>
894
895 <para>Implies
964c4eda 896 <literal>BlockIOAccounting=yes</literal>.</para>
7d862ab8
TH
897
898 <para>These settings are deprecated. Use <varname>IOReadBandwidthMax=</varname> and
899 <varname>IOWriteBandwidthMax=</varname> instead.</para>
900 </listitem>
901 </varlistentry>
902
903 </variablelist>
904 </refsect1>
905
d868475a
ZJS
906 <refsect1>
907 <title>See Also</title>
908 <para>
909 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
910 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
911 <citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
912 <citerefentry><refentrytitle>systemd.slice</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
913 <citerefentry><refentrytitle>systemd.scope</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
914 <citerefentry><refentrytitle>systemd.socket</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
915 <citerefentry><refentrytitle>systemd.mount</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
916 <citerefentry><refentrytitle>systemd.swap</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
74b47bbd 917 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
d868475a 918 <citerefentry><refentrytitle>systemd.directives</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
61ad59b1 919 <citerefentry><refentrytitle>systemd.special</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
d868475a 920 The documentation for control groups and specific controllers in the Linux kernel:
c51fa947
MP
921 <ulink url="https://www.kernel.org/doc/Documentation/cgroup-v1/cgroups.txt">cgroups.txt</ulink>,
922 <ulink url="https://www.kernel.org/doc/Documentation/cgroup-v1/cpuacct.txt">cpuacct.txt</ulink>,
923 <ulink url="https://www.kernel.org/doc/Documentation/cgroup-v1/memory.txt">memory.txt</ulink>,
924 <ulink url="https://www.kernel.org/doc/Documentation/cgroup-v1/blkio-controller.txt">blkio-controller.txt</ulink>.
49bdfaba 925 <ulink url="https://www.kernel.org/doc/Documentation/scheduler/sched-bwc.txt">sched-bwc.txt</ulink>.
d868475a
ZJS
926 </para>
927 </refsect1>
928</refentry>