Blame view

block/Kconfig 2.94 KB
3a65dfe8c   Jens Axboe   [BLOCK] Move all ...
1
2
3
  #
  # Block layer core configuration
  #
16ed002f2   Jan Engelhardt   Use menuconfigs i...
4
  menuconfig BLOCK
51d7513a8   Jens Axboe   [PATCH] Only enab...
5
         bool "Enable the block layer" if EMBEDDED
9361401eb   David Howells   [PATCH] BLOCK: Ma...
6
7
         default y
         help
ee86418d3   Nick Andrew   Kconfig: clean up...
8
  	 Provide block layer support for the kernel.
9361401eb   David Howells   [PATCH] BLOCK: Ma...
9

ee86418d3   Nick Andrew   Kconfig: clean up...
10
11
12
13
14
15
16
17
18
19
  	 Disable this option to remove the block layer support from the
  	 kernel. This may be useful for embedded devices.
  
  	 If this option is disabled:
  
  	   - block device files will become unusable
  	   - some filesystems (such as ext3) will become unavailable.
  
  	 Also, SCSI character devices and USB storage will be disabled since
  	 they make use of various block layer definitions and facilities.
9361401eb   David Howells   [PATCH] BLOCK: Ma...
20
21
22
23
24
  
  	 Say Y here unless you know you really don't want to mount disks and
  	 suchlike.
  
  if BLOCK
3a65dfe8c   Jens Axboe   [BLOCK] Move all ...
25
26
  config LBD
  	bool "Support for Large Block Devices"
e62438630   Matthew Wilcox   [PATCH] Centralis...
27
  	depends on !64BIT
3a65dfe8c   Jens Axboe   [BLOCK] Move all ...
28
  	help
ee86418d3   Nick Andrew   Kconfig: clean up...
29
30
31
32
33
34
35
36
37
38
39
40
41
42
  	  Enable block devices of size 2TB and larger.
  
  	  This option is required to support the full capacity of large
  	  (2TB+) block devices, including RAID, disk, Network Block Device,
  	  Logical Volume Manager (LVM) and loopback.
  
  	  For example, RAID devices are frequently bigger than the capacity
  	  of the largest individual hard drive.
  
  	  This option is not required if you have individual disk drives
  	  which total 2TB+ and you are not aggregating the capacity into
  	  a large block device (e.g. using RAID or LVM).
  
  	  If unsure, say N.
3a65dfe8c   Jens Axboe   [BLOCK] Move all ...
43

2056a782f   Jens Axboe   [PATCH] Block que...
44
45
  config BLK_DEV_IO_TRACE
  	bool "Support for tracing block io actions"
09540e691   Jens Axboe   [PATCH] Fix blktr...
46
  	depends on SYSFS
2056a782f   Jens Axboe   [PATCH] Block que...
47
48
49
  	select RELAY
  	select DEBUG_FS
  	help
ee86418d3   Nick Andrew   Kconfig: clean up...
50
  	  Say Y here if you want to be able to trace the block layer actions
2056a782f   Jens Axboe   [PATCH] Block que...
51
  	  on a given queue. Tracing allows you to see any traffic happening
ee86418d3   Nick Andrew   Kconfig: clean up...
52
53
  	  on a block device queue. For more information (and the userspace
  	  support tools needed), fetch the blktrace tools from:
2056a782f   Jens Axboe   [PATCH] Block que...
54

75ce6facc   Jens Axboe   block: update git...
55
  	  git://git.kernel.dk/blktrace.git
2056a782f   Jens Axboe   [PATCH] Block que...
56

ee86418d3   Nick Andrew   Kconfig: clean up...
57
  	  If unsure, say N.
a0f62ac63   Takashi Sato   [PATCH] 2TB files...
58
59
  config LSF
  	bool "Support for Large Single Files"
e62438630   Matthew Wilcox   [PATCH] Centralis...
60
  	depends on !64BIT
a0f62ac63   Takashi Sato   [PATCH] 2TB files...
61
  	help
ee86418d3   Nick Andrew   Kconfig: clean up...
62
63
  	  Say Y here if you want to be able to handle very large files (2TB
  	  and larger), otherwise say N.
88b9adb07   Trond Myklebust   [PATCH] config: f...
64
65
  
  	  If unsure, say Y.
a0f62ac63   Takashi Sato   [PATCH] 2TB files...
66

3d6392cfb   Jens Axboe   bsg: support for ...
67
  config BLK_DEV_BSG
319a7b7fb   FUJITA Tomonori   bsg: Kconfig updates
68
  	bool "Block layer SG support v4 (EXPERIMENTAL)"
80ed71ce1   James Bottomley   [SCSI] bsg: separ...
69
  	depends on EXPERIMENTAL
3d6392cfb   Jens Axboe   bsg: support for ...
70
  	---help---
ee86418d3   Nick Andrew   Kconfig: clean up...
71
72
73
74
75
76
77
78
79
80
  	  Saying Y here will enable generic SG (SCSI generic) v4 support
  	  for any block device.
  
  	  Unlike SG v3 (aka block/scsi_ioctl.c drivers/scsi/sg.c), SG v4
  	  can handle complicated SCSI commands: tagged variable length cdbs
  	  with bidirectional data transfers and generic request/response
  	  protocols (e.g. Task Management Functions and SMP in Serial
  	  Attached SCSI).
  
  	  If unsure, say N.
3d6392cfb   Jens Axboe   bsg: support for ...
81

7ba1ba12e   Martin K. Petersen   block: Block laye...
82
83
84
85
86
87
88
89
90
91
92
  config BLK_DEV_INTEGRITY
  	bool "Block layer data integrity support"
  	---help---
  	Some storage devices allow extra information to be
  	stored/retrieved to help protect the data.  The block layer
  	data integrity option provides hooks which can be used by
  	filesystems to ensure better data integrity.
  
  	Say yes here if you have a storage device that provides the
  	T10/SCSI Data Integrity Field or the T13/ATA External Path
  	Protection.  If in doubt, say N.
2b9e0aae1   Linus Torvalds   Only enable BLOCK...
93
  endif # BLOCK
99874d504   Jens Axboe   [BLOCK] Only incl...
94
95
  config BLOCK_COMPAT
  	bool
2b9e0aae1   Linus Torvalds   Only enable BLOCK...
96
  	depends on BLOCK && COMPAT
99874d504   Jens Axboe   [BLOCK] Only incl...
97
  	default y
3a65dfe8c   Jens Axboe   [BLOCK] Move all ...
98
  source block/Kconfig.iosched