Kconfig (df252bde82ac19324b26192ea5e7527fbc1b6033) | Kconfig (c50fca55d4395ae27a57dee820f6df9b6a26c295) |
---|---|
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 --- 182 unchanged lines hidden (view full) --- 191 encryption hardware is not present. 192 193menu "Partition Types" 194 195source "block/partitions/Kconfig" 196 197endmenu 198 | 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 --- 182 unchanged lines hidden (view full) --- 191 encryption hardware is not present. 192 193menu "Partition Types" 194 195source "block/partitions/Kconfig" 196 197endmenu 198 |
199endif # BLOCK 200 | |
201config BLOCK_COMPAT | 199config BLOCK_COMPAT |
202 bool 203 depends on BLOCK && COMPAT 204 default y | 200 def_bool COMPAT |
205 206config BLK_MQ_PCI | 201 202config BLK_MQ_PCI |
207 bool 208 depends on BLOCK && PCI 209 default y | 203 def_bool PCI |
210 211config BLK_MQ_VIRTIO 212 bool | 204 205config BLK_MQ_VIRTIO 206 bool |
213 depends on BLOCK && VIRTIO | 207 depends on VIRTIO |
214 default y 215 216config BLK_MQ_RDMA 217 bool | 208 default y 209 210config BLK_MQ_RDMA 211 bool |
218 depends on BLOCK && INFINIBAND | 212 depends on INFINIBAND |
219 default y 220 221config BLK_PM | 213 default y 214 215config BLK_PM |
222 def_bool BLOCK && PM | 216 def_bool PM |
223 224# do not use in new code 225config BLOCK_HOLDER_DEPRECATED 226 bool 227 228source "block/Kconfig.iosched" | 217 218# do not use in new code 219config BLOCK_HOLDER_DEPRECATED 220 bool 221 222source "block/Kconfig.iosched" |
223 224endif # BLOCK |
|