Kconfig (986c6f7c3fc855032f3457a5a1b7fbcc09c375bb) Kconfig (451f0b6f4c44d7b649ae609157b114b71f6d7875)
1# SPDX-License-Identifier: GPL-2.0
2#
3# Block layer core configuration
4#
5menuconfig BLOCK
6 bool "Enable the block layer" if EXPERT
7 default y
8 select SBITMAP

--- 12 unchanged lines hidden (view full) ---

21 Also, SCSI character devices and USB storage will be disabled since
22 they make use of various block layer definitions and facilities.
23
24 Say Y here unless you know you really don't want to mount disks and
25 suchlike.
26
27if BLOCK
28
1# SPDX-License-Identifier: GPL-2.0
2#
3# Block layer core configuration
4#
5menuconfig BLOCK
6 bool "Enable the block layer" if EXPERT
7 default y
8 select SBITMAP

--- 12 unchanged lines hidden (view full) ---

21 Also, SCSI character devices and USB storage will be disabled since
22 they make use of various block layer definitions and facilities.
23
24 Say Y here unless you know you really don't want to mount disks and
25 suchlike.
26
27if BLOCK
28
29config BLOCK_LEGACY_AUTOLOAD
30 bool "Legacy autoloading support"
31 default y
32 help
33 Enable loading modules and creating block device instances based on
34 accesses through their device special file. This is a historic Linux
35 feature and makes no sense in a udev world where device files are
36 created on demand, but scripts that manually create device nodes and
37 then call losetup might rely on this behavior.
38
29config BLK_RQ_ALLOC_TIME
30 bool
31
32config BLK_CGROUP_RWSTAT
33 bool
34
35config BLK_DEV_BSG_COMMON
36 tristate

--- 176 unchanged lines hidden (view full) ---

213
214config BLK_PM
215 def_bool PM
216
217# do not use in new code
218config BLOCK_HOLDER_DEPRECATED
219 bool
220
39config BLK_RQ_ALLOC_TIME
40 bool
41
42config BLK_CGROUP_RWSTAT
43 bool
44
45config BLK_DEV_BSG_COMMON
46 tristate

--- 176 unchanged lines hidden (view full) ---

223
224config BLK_PM
225 def_bool PM
226
227# do not use in new code
228config BLOCK_HOLDER_DEPRECATED
229 bool
230
231config BLK_MQ_STACKING
232 bool
233
221source "block/Kconfig.iosched"
222
223endif # BLOCK
234source "block/Kconfig.iosched"
235
236endif # BLOCK