diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-07 22:30:50 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-07 22:30:50 -0500 |
commit | a4ffc0a0b240a29cbe489f6db9dae112a49ef1c1 (patch) | |
tree | 9719c706444f4b720aff2bb4bdf23a4be3f4b1e3 /drivers/md/Kconfig | |
parent | d7511ec8115487ccea2ce93bf58d5e5cd2c1c0a3 (diff) | |
parent | af195ac82e38ba802fd86b5a014ed05ef6dd88bb (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/agk/linux-2.6-dm
* git://git.kernel.org/pub/scm/linux/kernel/git/agk/linux-2.6-dm: (44 commits)
dm raid1: report fault status
dm raid1: handle read failures
dm raid1: fix EIO after log failure
dm raid1: handle recovery failures
dm raid1: handle write failures
dm snapshot: combine consecutive exceptions in memory
dm: stripe enhanced status return
dm: stripe trigger event on failure
dm log: auto load modules
dm: move deferred bio flushing to workqueue
dm crypt: use async crypto
dm crypt: prepare async callback fn
dm crypt: add completion for async
dm crypt: add async request mempool
dm crypt: extract scatterlist processing
dm crypt: tidy io ref counting
dm crypt: introduce crypt_write_io_loop
dm crypt: abstract crypt_write_done
dm crypt: store sector mapping in dm_crypt_io
dm crypt: move queue functions
...
Diffstat (limited to 'drivers/md/Kconfig')
-rw-r--r-- | drivers/md/Kconfig | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/drivers/md/Kconfig b/drivers/md/Kconfig index 3fa7c77d9bd9..610af916891e 100644 --- a/drivers/md/Kconfig +++ b/drivers/md/Kconfig | |||
@@ -204,7 +204,7 @@ config BLK_DEV_DM | |||
204 | 204 | ||
205 | config DM_DEBUG | 205 | config DM_DEBUG |
206 | boolean "Device mapper debugging support" | 206 | boolean "Device mapper debugging support" |
207 | depends on BLK_DEV_DM && EXPERIMENTAL | 207 | depends on BLK_DEV_DM |
208 | ---help--- | 208 | ---help--- |
209 | Enable this for messages that may help debug device-mapper problems. | 209 | Enable this for messages that may help debug device-mapper problems. |
210 | 210 | ||
@@ -212,7 +212,7 @@ config DM_DEBUG | |||
212 | 212 | ||
213 | config DM_CRYPT | 213 | config DM_CRYPT |
214 | tristate "Crypt target support" | 214 | tristate "Crypt target support" |
215 | depends on BLK_DEV_DM && EXPERIMENTAL | 215 | depends on BLK_DEV_DM |
216 | select CRYPTO | 216 | select CRYPTO |
217 | select CRYPTO_CBC | 217 | select CRYPTO_CBC |
218 | ---help--- | 218 | ---help--- |
@@ -230,34 +230,34 @@ config DM_CRYPT | |||
230 | If unsure, say N. | 230 | If unsure, say N. |
231 | 231 | ||
232 | config DM_SNAPSHOT | 232 | config DM_SNAPSHOT |
233 | tristate "Snapshot target (EXPERIMENTAL)" | 233 | tristate "Snapshot target" |
234 | depends on BLK_DEV_DM && EXPERIMENTAL | 234 | depends on BLK_DEV_DM |
235 | ---help--- | 235 | ---help--- |
236 | Allow volume managers to take writable snapshots of a device. | 236 | Allow volume managers to take writable snapshots of a device. |
237 | 237 | ||
238 | config DM_MIRROR | 238 | config DM_MIRROR |
239 | tristate "Mirror target (EXPERIMENTAL)" | 239 | tristate "Mirror target" |
240 | depends on BLK_DEV_DM && EXPERIMENTAL | 240 | depends on BLK_DEV_DM |
241 | ---help--- | 241 | ---help--- |
242 | Allow volume managers to mirror logical volumes, also | 242 | Allow volume managers to mirror logical volumes, also |
243 | needed for live data migration tools such as 'pvmove'. | 243 | needed for live data migration tools such as 'pvmove'. |
244 | 244 | ||
245 | config DM_ZERO | 245 | config DM_ZERO |
246 | tristate "Zero target (EXPERIMENTAL)" | 246 | tristate "Zero target" |
247 | depends on BLK_DEV_DM && EXPERIMENTAL | 247 | depends on BLK_DEV_DM |
248 | ---help--- | 248 | ---help--- |
249 | A target that discards writes, and returns all zeroes for | 249 | A target that discards writes, and returns all zeroes for |
250 | reads. Useful in some recovery situations. | 250 | reads. Useful in some recovery situations. |
251 | 251 | ||
252 | config DM_MULTIPATH | 252 | config DM_MULTIPATH |
253 | tristate "Multipath target (EXPERIMENTAL)" | 253 | tristate "Multipath target" |
254 | depends on BLK_DEV_DM && EXPERIMENTAL | 254 | depends on BLK_DEV_DM |
255 | ---help--- | 255 | ---help--- |
256 | Allow volume managers to support multipath hardware. | 256 | Allow volume managers to support multipath hardware. |
257 | 257 | ||
258 | config DM_MULTIPATH_EMC | 258 | config DM_MULTIPATH_EMC |
259 | tristate "EMC CX/AX multipath support (EXPERIMENTAL)" | 259 | tristate "EMC CX/AX multipath support" |
260 | depends on DM_MULTIPATH && BLK_DEV_DM && EXPERIMENTAL | 260 | depends on DM_MULTIPATH && BLK_DEV_DM |
261 | ---help--- | 261 | ---help--- |
262 | Multipath support for EMC CX/AX series hardware. | 262 | Multipath support for EMC CX/AX series hardware. |
263 | 263 | ||