Kconfig 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. #
  2. # Block layer core configuration
  3. #
  4. menuconfig BLOCK
  5. bool "Enable the block layer" if EXPERT
  6. default y
  7. select SBITMAP
  8. help
  9. Provide block layer support for the kernel.
  10. Disable this option to remove the block layer support from the
  11. kernel. This may be useful for embedded devices.
  12. If this option is disabled:
  13. - block device files will become unusable
  14. - some filesystems (such as ext3) will become unavailable.
  15. Also, SCSI character devices and USB storage will be disabled since
  16. they make use of various block layer definitions and facilities.
  17. Say Y here unless you know you really don't want to mount disks and
  18. suchlike.
  19. if BLOCK
  20. config LBDAF
  21. bool "Support for large (2TB+) block devices and files"
  22. depends on !64BIT
  23. default y
  24. help
  25. Enable block devices or files of size 2TB and larger.
  26. This option is required to support the full capacity of large
  27. (2TB+) block devices, including RAID, disk, Network Block Device,
  28. Logical Volume Manager (LVM) and loopback.
  29. This option also enables support for single files larger than
  30. 2TB.
  31. The ext4 filesystem requires that this feature be enabled in
  32. order to support filesystems that have the huge_file feature
  33. enabled. Otherwise, it will refuse to mount in the read-write
  34. mode any filesystems that use the huge_file feature, which is
  35. enabled by default by mke2fs.ext4.
  36. The GFS2 filesystem also requires this feature.
  37. If unsure, say Y.
  38. config BLK_DEV_BSG
  39. bool "Block layer SG support v4"
  40. default y
  41. help
  42. Saying Y here will enable generic SG (SCSI generic) v4 support
  43. for any block device.
  44. Unlike SG v3 (aka block/scsi_ioctl.c drivers/scsi/sg.c), SG v4
  45. can handle complicated SCSI commands: tagged variable length cdbs
  46. with bidirectional data transfers and generic request/response
  47. protocols (e.g. Task Management Functions and SMP in Serial
  48. Attached SCSI).
  49. This option is required by recent UDEV versions to properly
  50. access device serial numbers, etc.
  51. If unsure, say Y.
  52. config BLK_DEV_BSGLIB
  53. bool "Block layer SG support v4 helper lib"
  54. default n
  55. select BLK_DEV_BSG
  56. help
  57. Subsystems will normally enable this if needed. Users will not
  58. normally need to manually enable this.
  59. If unsure, say N.
  60. config BLK_DEV_INTEGRITY
  61. bool "Block layer data integrity support"
  62. select CRC_T10DIF if BLK_DEV_INTEGRITY
  63. ---help---
  64. Some storage devices allow extra information to be
  65. stored/retrieved to help protect the data. The block layer
  66. data integrity option provides hooks which can be used by
  67. filesystems to ensure better data integrity.
  68. Say yes here if you have a storage device that provides the
  69. T10/SCSI Data Integrity Field or the T13/ATA External Path
  70. Protection. If in doubt, say N.
  71. config BLK_DEV_THROTTLING
  72. bool "Block layer bio throttling support"
  73. depends on BLK_CGROUP=y
  74. default n
  75. ---help---
  76. Block layer bio throttling support. It can be used to limit
  77. the IO rate to a device. IO rate policies are per cgroup and
  78. one needs to mount and use blkio cgroup controller for creating
  79. cgroups and specifying per device IO rate policies.
  80. See Documentation/cgroups/blkio-controller.txt for more information.
  81. config BLK_CMDLINE_PARSER
  82. bool "Block device command line partition parser"
  83. default n
  84. ---help---
  85. Enabling this option allows you to specify the partition layout from
  86. the kernel boot args. This is typically of use for embedded devices
  87. which don't otherwise have any standardized method for listing the
  88. partitions on a block device.
  89. See Documentation/block/cmdline-partition.txt for more information.
  90. menu "Partition Types"
  91. source "block/partitions/Kconfig"
  92. endmenu
  93. endif # BLOCK
  94. config BLOCK_COMPAT
  95. bool
  96. depends on BLOCK && COMPAT
  97. default y
  98. config BLK_MQ_PCI
  99. bool
  100. depends on BLOCK && PCI
  101. default y
  102. source block/Kconfig.iosched