Kconfig (542898c5aa5c6a3179dffb1d1606884a63f75fed) | Kconfig (248c793359daacd826a7507a258ffe41653efef7) |
---|---|
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 help 32 Enable loading modules and creating block device instances based on 33 accesses through their device special file. This is a historic Linux 34 feature and makes no sense in a udev world where device files are 35 created on demand. 36 37 Say N here unless booting or other functionality broke without it, in 38 which case you should also send a report to your distribution and 39 linux-block@vger.kernel.org. 40 |
|
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 | 41config BLK_RQ_ALLOC_TIME 42 bool 43 44config BLK_CGROUP_RWSTAT 45 bool 46 47config BLK_DEV_BSG_COMMON 48 tristate --- 176 unchanged lines hidden (view full) --- 225 226config BLK_PM 227 def_bool PM 228 229# do not use in new code 230config BLOCK_HOLDER_DEPRECATED 231 bool 232 |
233config BLK_MQ_STACKING 234 bool 235 |
|
221source "block/Kconfig.iosched" 222 223endif # BLOCK | 236source "block/Kconfig.iosched" 237 238endif # BLOCK |