diff options
| -rw-r--r-- | block/Kconfig | 65 |
1 files changed, 42 insertions, 23 deletions
diff --git a/block/Kconfig b/block/Kconfig index 7db9a411649d..3e97f2bc446f 100644 --- a/block/Kconfig +++ b/block/Kconfig | |||
| @@ -5,14 +5,18 @@ menuconfig BLOCK | |||
| 5 | bool "Enable the block layer" if EMBEDDED | 5 | bool "Enable the block layer" if EMBEDDED |
| 6 | default y | 6 | default y |
| 7 | help | 7 | help |
| 8 | This permits the block layer to be removed from the kernel if it's not | 8 | Provide block layer support for the kernel. |
| 9 | needed (on some embedded devices for example). If this option is | ||
| 10 | disabled, then blockdev files will become unusable and some | ||
| 11 | filesystems (such as ext3) will become unavailable. | ||
| 12 | 9 | ||
| 13 | This option will also disable SCSI character devices and USB storage | 10 | Disable this option to remove the block layer support from the |
| 14 | since they make use of various block layer definitions and | 11 | kernel. This may be useful for embedded devices. |
| 15 | facilities. | 12 | |
| 13 | If this option is disabled: | ||
| 14 | |||
| 15 | - block device files will become unusable | ||
| 16 | - some filesystems (such as ext3) will become unavailable. | ||
| 17 | |||
| 18 | Also, SCSI character devices and USB storage will be disabled since | ||
| 19 | they make use of various block layer definitions and facilities. | ||
| 16 | 20 | ||
| 17 | Say Y here unless you know you really don't want to mount disks and | 21 | Say Y here unless you know you really don't want to mount disks and |
| 18 | suchlike. | 22 | suchlike. |
| @@ -23,9 +27,20 @@ config LBD | |||
| 23 | bool "Support for Large Block Devices" | 27 | bool "Support for Large Block Devices" |
| 24 | depends on !64BIT | 28 | depends on !64BIT |
| 25 | help | 29 | help |
| 26 | Say Y here if you want to attach large (bigger than 2TB) discs to | 30 | Enable block devices of size 2TB and larger. |
| 27 | your machine, or if you want to have a raid or loopback device | 31 | |
| 28 | bigger than 2TB. Otherwise say N. | 32 | This option is required to support the full capacity of large |
| 33 | (2TB+) block devices, including RAID, disk, Network Block Device, | ||
| 34 | Logical Volume Manager (LVM) and loopback. | ||
| 35 | |||
| 36 | For example, RAID devices are frequently bigger than the capacity | ||
| 37 | of the largest individual hard drive. | ||
| 38 | |||
| 39 | This option is not required if you have individual disk drives | ||
| 40 | which total 2TB+ and you are not aggregating the capacity into | ||
| 41 | a large block device (e.g. using RAID or LVM). | ||
| 42 | |||
| 43 | If unsure, say N. | ||
| 29 | 44 | ||
| 30 | config BLK_DEV_IO_TRACE | 45 | config BLK_DEV_IO_TRACE |
| 31 | bool "Support for tracing block io actions" | 46 | bool "Support for tracing block io actions" |
| @@ -33,19 +48,21 @@ config BLK_DEV_IO_TRACE | |||
| 33 | select RELAY | 48 | select RELAY |
| 34 | select DEBUG_FS | 49 | select DEBUG_FS |
| 35 | help | 50 | help |
| 36 | Say Y here, if you want to be able to trace the block layer actions | 51 | Say Y here if you want to be able to trace the block layer actions |
| 37 | on a given queue. Tracing allows you to see any traffic happening | 52 | on a given queue. Tracing allows you to see any traffic happening |
| 38 | on a block device queue. For more information (and the user space | 53 | on a block device queue. For more information (and the userspace |
| 39 | support tools needed), fetch the blktrace app from: | 54 | support tools needed), fetch the blktrace tools from: |
| 40 | 55 | ||
| 41 | git://git.kernel.dk/blktrace.git | 56 | git://git.kernel.dk/blktrace.git |
| 42 | 57 | ||
| 58 | If unsure, say N. | ||
| 59 | |||
| 43 | config LSF | 60 | config LSF |
| 44 | bool "Support for Large Single Files" | 61 | bool "Support for Large Single Files" |
| 45 | depends on !64BIT | 62 | depends on !64BIT |
| 46 | help | 63 | help |
| 47 | Say Y here if you want to be able to handle very large files (bigger | 64 | Say Y here if you want to be able to handle very large files (2TB |
| 48 | than 2TB), otherwise say N. | 65 | and larger), otherwise say N. |
| 49 | 66 | ||
| 50 | If unsure, say Y. | 67 | If unsure, say Y. |
| 51 | 68 | ||
| @@ -53,14 +70,16 @@ config BLK_DEV_BSG | |||
| 53 | bool "Block layer SG support v4 (EXPERIMENTAL)" | 70 | bool "Block layer SG support v4 (EXPERIMENTAL)" |
| 54 | depends on EXPERIMENTAL | 71 | depends on EXPERIMENTAL |
| 55 | ---help--- | 72 | ---help--- |
| 56 | Saying Y here will enable generic SG (SCSI generic) v4 support | 73 | Saying Y here will enable generic SG (SCSI generic) v4 support |
| 57 | for any block device. | 74 | for any block device. |
| 58 | 75 | ||
| 59 | Unlike SG v3 (aka block/scsi_ioctl.c drivers/scsi/sg.c), SG v4 | 76 | Unlike SG v3 (aka block/scsi_ioctl.c drivers/scsi/sg.c), SG v4 |
| 60 | can handle complicated SCSI commands: tagged variable length cdbs | 77 | can handle complicated SCSI commands: tagged variable length cdbs |
| 61 | with bidirectional data transfers and generic request/response | 78 | with bidirectional data transfers and generic request/response |
| 62 | protocols (e.g. Task Management Functions and SMP in Serial | 79 | protocols (e.g. Task Management Functions and SMP in Serial |
| 63 | Attached SCSI). | 80 | Attached SCSI). |
| 81 | |||
| 82 | If unsure, say N. | ||
| 64 | 83 | ||
| 65 | endif # BLOCK | 84 | endif # BLOCK |
| 66 | 85 | ||
