lib: bitmap: support "N" as an alias for size of bitmap
[linux-block.git] / Documentation / admin-guide / kernel-parameters.rst
CommitLineData
9b9355a2
AC
1.. _kernelparameters:
2
7358bb2f
JC
3The kernel's command-line parameters
4====================================
1da177e4 5
81e79063
RD
6The following is a consolidated list of the kernel parameters as implemented
7by the __setup(), early_param(), core_param() and module_param() macros
5888bcc5
RR
8and sorted into English Dictionary order (defined as ignoring all
9punctuation and sorting digits before letters in a case insensitive
10manner), and with descriptions where known.
11
62ee81b5 12The kernel parses parameters from the kernel command line up to "``--``";
5888bcc5
RR
13if it doesn't recognize a parameter and it doesn't contain a '.', the
14parameter gets passed to init: parameters with '=' go into init's
15environment, others are passed as command line arguments to init.
62ee81b5 16Everything after "``--``" is passed as an argument to init.
5888bcc5
RR
17
18Module parameters can be specified in two ways: via the kernel command
684adc0a 19line with a module name prefix, or via modprobe, e.g.::
5888bcc5
RR
20
21 (kernel command line) usbcore.blinkenlights=1
22 (modprobe command line) modprobe usbcore blinkenlights=1
23
24Parameters for modules which are built into the kernel need to be
25specified on the kernel command line. modprobe looks through the
26kernel command line (/proc/cmdline) and collects module parameters
27when it loads a module, so the kernel command line can be used for
28loadable modules too.
1da177e4 29
684adc0a
MCC
30Hyphens (dashes) and underscores are equivalent in parameter names, so::
31
ca1eda2d 32 log_buf_len=1M print-fatal-signals=1
684adc0a
MCC
33
34can also be entered as::
35
ca1eda2d
RD
36 log-buf-len=1M print_fatal_signals=1
37
684adc0a
MCC
38Double-quotes can be used to protect spaces in values, e.g.::
39
5888bcc5 40 param="spaces in here"
ca1eda2d 41
2d13e6ca
NC
42cpu lists:
43----------
44
45Some kernel parameters take a list of CPUs as a value, e.g. isolcpus,
46nohz_full, irqaffinity, rcu_nocbs. The format of this list is:
47
48 <cpu number>,...,<cpu number>
49
50or
51
52 <cpu number>-<cpu number>
53 (must be a positive range in ascending order)
54
55or a mixture
56
57<cpu number>,...,<cpu number>-<cpu number>
58
59Note that for the special case of a range one can split the range into equal
60sized groups and for each group use some amount from the beginning of that
61group:
62
187623b1 63 <cpu number>-<cpu number>:<used size>/<group size>
2d13e6ca
NC
64
65For example one can add to the command line following parameter:
66
67 isolcpus=1,2,10-20,100-2000:2/25
68
69where the final item represents CPUs 100,101,125,126,150,151,...
70
2c4885d2
PG
71The value "N" can be used to represent the numerically last CPU on the system,
72i.e "foo_cpus=16-N" would be equivalent to "16-31" on a 32 core system.
73
74Keep in mind that "N" is dynamic, so if system changes cause the bitmap width
75to change, such as less cores in the CPU list, then N and any ranges using N
76will also change. Use the same on a small 4 core system, and "16-N" becomes
77"16-3" and now the same boot input will be flagged as invalid (start > end).
2d13e6ca
NC
78
79
a901ebb9
SR
80This document may not be entirely up to date and comprehensive. The command
81"modinfo -p ${modulename}" shows a current list of all parameters of a loadable
82module. Loadable modules, after being loaded into the running kernel, also
83reveal their parameters in /sys/module/${modulename}/parameters/. Some of these
84parameters may be changed at runtime by the command
684adc0a 85``echo -n ${value} > /sys/module/${modulename}/parameters/${parm}``.
a901ebb9 86
6585fa8a
SR
87The parameters listed below are only valid if certain kernel build options were
88enabled and if respective hardware is present. The text in square brackets at
89the beginning of each description states the restrictions within which a
684adc0a 90parameter is applicable::
1da177e4
LT
91
92 ACPI ACPI support is enabled.
c99c108a 93 AGP AGP (Accelerated Graphics Port) is enabled.
1da177e4
LT
94 ALSA ALSA sound support is enabled.
95 APIC APIC support is enabled.
96 APM Advanced Power Management support is enabled.
16290246 97 ARM ARM architecture is enabled.
4ad499c9 98 ARM64 ARM64 architecture is enabled.
1da177e4 99 AX25 Appropriate AX.25 support is enabled.
1e435256 100 CLK Common clock infrastructure is enabled.
5c71d618 101 CMA Contiguous Memory Area support is enabled.
9cfe268e
AC
102 DRM Direct Rendering Management support is enabled.
103 DYNAMIC_DEBUG Build in debug messages and enable them at runtime
1da177e4
LT
104 EDD BIOS Enhanced Disk Drive Services (EDD) is enabled
105 EFI EFI Partitioning (GPT) is enabled
106 EIDE EIDE/ATAPI support is enabled.
7102ebcd 107 EVM Extended Verification Module
1da177e4 108 FB The frame buffer device is enabled.
16290246 109 FTRACE Function tracing enabled.
2521f2c2 110 GCOV GCOV profiling is enabled.
1da177e4 111 HW Appropriate hardware is enabled.
1da177e4 112 IA-64 IA-64 architecture is enabled.
6146f0d5 113 IMA Integrity measurement architecture is enabled.
1da177e4 114 IOSCHED More than one I/O scheduler is enabled.
41e2e8be 115 IP_PNP IP DHCP, BOOTP, or RARP is enabled.
b0f83b28 116 IPV6 IPv6 support is enabled.
1da177e4
LT
117 ISAPNP ISA PnP code is enabled.
118 ISDN Appropriate ISDN support is enabled.
d94d1053 119 ISOL CPU Isolation is enabled.
1da177e4 120 JOY Appropriate joystick support is enabled.
84c08fd6 121 KGDB Kernel debugger support is enabled.
fef07aae 122 KVM Kernel Virtual Machine support is enabled.
11ef697b 123 LIBATA Libata driver is enabled
1da177e4
LT
124 LP Printer support is enabled.
125 LOOP Loopback device support is enabled.
126 M68k M68k architecture is enabled.
127 These options have more detailed description inside of
23e02422 128 Documentation/m68k/kernel-options.rst.
1da177e4 129 MDA MDA console support is enabled.
16290246 130 MIPS MIPS architecture is enabled.
1da177e4 131 MOUSE Appropriate mouse support is enabled.
309e57df 132 MSI Message Signaled Interrupts (PCI).
c8facbb6 133 MTD MTD (Memory Technology Device) support is enabled.
1da177e4
LT
134 NET Appropriate network support is enabled.
135 NUMA NUMA support is enabled.
136 NFS Appropriate NFS support is enabled.
a3e1d1a7 137 OF Devicetree is enabled.
1da177e4 138 OSS OSS sound support is enabled.
c8facbb6
RD
139 PV_OPS A paravirtualized kernel is enabled.
140 PARIDE The ParIDE (parallel port IDE) subsystem is enabled.
1da177e4
LT
141 PARISC The PA-RISC architecture is enabled.
142 PCI PCI bus support is enabled.
7f785763 143 PCIE PCI Express support is enabled.
1da177e4
LT
144 PCMCIA The PCMCIA subsystem is enabled.
145 PNP Plug & Play support is enabled.
146 PPC PowerPC architecture is enabled.
147 PPT Parallel port support is enabled.
148 PS2 Appropriate PS/2 support is enabled.
149 RAM RAM disk support is enabled.
1d9807fc 150 RDT Intel Resource Director Technology.
1da177e4
LT
151 S390 S390 architecture is enabled.
152 SCSI Appropriate SCSI support is enabled.
163475fb
RD
153 A lot of drivers have their options described inside
154 the Documentation/scsi/ sub-directory.
20510f2f 155 SECURITY Different security models are enabled.
1da177e4 156 SELINUX SELinux support is enabled.
c1c124e9 157 APPARMOR AppArmor support is enabled.
1da177e4 158 SERIAL Serial support is enabled.
e523d93c 159 SH SuperH architecture is enabled.
1da177e4
LT
160 SMP The kernel is an SMP kernel.
161 SPARC Sparc architecture is enabled.
77437fd4
DB
162 SWSUSP Software suspend (hibernation) is enabled.
163 SUSPEND System suspend states are enabled.
225a9be2 164 TPM TPM drivers are enabled.
1da177e4 165 TS Appropriate touchscreen support is enabled.
d4f373e5 166 UMS USB Mass Storage support is enabled.
1da177e4
LT
167 USB USB support is enabled.
168 USBHID USB Human Interface Device support is enabled.
169 V4L Video For Linux support is enabled.
81a054ce 170 VMMIO Driver for memory mapped virtio devices is enabled.
1da177e4
LT
171 VGA The VGA console has been enabled.
172 VT Virtual terminal support is enabled.
173 WDT Watchdog support is enabled.
174 XT IBM PC/XT MFM hard disk support is enabled.
cd4f0ef7 175 X86-32 X86-32, aka i386 architecture is enabled.
1da177e4
LT
176 X86-64 X86-64 architecture is enabled.
177 More X86-64 boot options can be found in
cb1aaebe 178 Documentation/x86/x86_64/boot-options.rst.
16290246 179 X86 Either 32-bit or 64-bit x86 (same as X86-32+X86-64)
1c532e00 180 X86_UV SGI UV support is enabled.
c1c5413a 181 XEN Xen support is enabled
4c8e3de4 182 XTENSA xtensa architecture is enabled.
1da177e4 183
684adc0a 184In addition, the following text indicates that the option::
1da177e4
LT
185
186 BUGS= Relates to possible processor bugs on the said processor.
187 KNL Is a kernel start-up parameter.
188 BOOT Is a boot loader parameter.
189
190Parameters denoted with BOOT are actually interpreted by the boot
191loader, and have no meaning to the kernel directly.
192Do not modify the syntax of boot loader parameters without extreme
cb1aaebe 193need or coordination with <Documentation/x86/boot.rst>.
1da177e4 194
5558870b 195There are also arch-specific kernel-parameters not documented here.
cb1aaebe 196See for example <Documentation/x86/x86_64/boot-options.rst>.
5558870b 197
1da177e4
LT
198Note that ALL kernel parameters listed below are CASE SENSITIVE, and that
199a trailing = on the name of any parameter states that that parameter will
200be entered as an environment variable, whereas its absence indicates that
201it will appear as a kernel argument readable via /proc/cmdline by programs
202running once the system is up.
203
9c4751fd 204The number of kernel parameters is not limited, but the length of the
205complete command line (parameters including spaces etc.) is limited to
206a fixed number of characters. This limit depends on the architecture
207and is between 256 and 4096 characters. It is defined in the file
208./include/asm/setup.h as COMMAND_LINE_SIZE.
209
7a19a237
AD
210Finally, the [KMG] suffix is commonly described after a number of kernel
211parameter values. These 'K', 'M', and 'G' letters represent the _binary_
9f02a486 212multipliers 'Kilo', 'Mega', and 'Giga', equaling 2^10, 2^20, and 2^30
e52347bd 213bytes respectively. Such letter suffixes can also be entirely omitted:
7a19a237 214
e52347bd
JN
215.. include:: kernel-parameters.txt
216 :literal:
1da177e4 217
684adc0a
MCC
218Todo
219----
1da177e4 220
1da177e4 221 Add more DRM drivers.