aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikulas Patocka <mpatocka@redhat.com>2013-11-08 10:47:12 -0500
committerMike Snitzer <snitzer@redhat.com>2013-11-09 18:20:22 -0500
commit5442851edb28d7b8dfd98023b2a10c65b93f07a1 (patch)
treeb0d286bff86e5b1489469af943d38112622b34ef
parent2c140a246dc0bc085b98eddde978060fcec1080c (diff)
dm: fix Kconfig menu indentation
The option DM_LOG_USERSPACE is sub-option of DM_MIRROR, so place it right after DM_MIRROR. Doing so fixes various other Device mapper targets/features to be properly nested under "Device mapper support". Signed-off-by: Mikulas Patocka <mpatocka@redhat.com> Signed-off-by: Mike Snitzer <snitzer@redhat.com>
-rw-r--r--drivers/md/Kconfig22
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/md/Kconfig b/drivers/md/Kconfig
index 30b426ed744b..f2ccbc3b9fe4 100644
--- a/drivers/md/Kconfig
+++ b/drivers/md/Kconfig
@@ -297,6 +297,17 @@ config DM_MIRROR
297 Allow volume managers to mirror logical volumes, also 297 Allow volume managers to mirror logical volumes, also
298 needed for live data migration tools such as 'pvmove'. 298 needed for live data migration tools such as 'pvmove'.
299 299
300config DM_LOG_USERSPACE
301 tristate "Mirror userspace logging"
302 depends on DM_MIRROR && NET
303 select CONNECTOR
304 ---help---
305 The userspace logging module provides a mechanism for
306 relaying the dm-dirty-log API to userspace. Log designs
307 which are more suited to userspace implementation (e.g.
308 shared storage logs) or experimental logs can be implemented
309 by leveraging this framework.
310
300config DM_RAID 311config DM_RAID
301 tristate "RAID 1/4/5/6/10 target" 312 tristate "RAID 1/4/5/6/10 target"
302 depends on BLK_DEV_DM 313 depends on BLK_DEV_DM
@@ -323,17 +334,6 @@ config DM_RAID
323 RAID-5, RAID-6 distributes the syndromes across the drives 334 RAID-5, RAID-6 distributes the syndromes across the drives
324 in one of the available parity distribution methods. 335 in one of the available parity distribution methods.
325 336
326config DM_LOG_USERSPACE
327 tristate "Mirror userspace logging"
328 depends on DM_MIRROR && NET
329 select CONNECTOR
330 ---help---
331 The userspace logging module provides a mechanism for
332 relaying the dm-dirty-log API to userspace. Log designs
333 which are more suited to userspace implementation (e.g.
334 shared storage logs) or experimental logs can be implemented
335 by leveraging this framework.
336
337config DM_ZERO 337config DM_ZERO
338 tristate "Zero target" 338 tristate "Zero target"
339 depends on BLK_DEV_DM 339 depends on BLK_DEV_DM