Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dm: targets no longer experimental

Drop the EXPERIMENTAL tag from well-established device-mapper targets, so
the newer ones stand out better.

Signed-off-by: Alasdair G Kergon <agk@redhat.com>

+12 -12
+12 -12
drivers/md/Kconfig
··· 204 204 205 205 config DM_DEBUG 206 206 boolean "Device mapper debugging support" 207 - depends on BLK_DEV_DM && EXPERIMENTAL 207 + depends on BLK_DEV_DM 208 208 ---help--- 209 209 Enable this for messages that may help debug device-mapper problems. 210 210 ··· 212 212 213 213 config DM_CRYPT 214 214 tristate "Crypt target support" 215 - depends on BLK_DEV_DM && EXPERIMENTAL 215 + depends on BLK_DEV_DM 216 216 select CRYPTO 217 217 select CRYPTO_CBC 218 218 ---help--- ··· 230 230 If unsure, say N. 231 231 232 232 config DM_SNAPSHOT 233 - tristate "Snapshot target (EXPERIMENTAL)" 234 - depends on BLK_DEV_DM && EXPERIMENTAL 233 + tristate "Snapshot target" 234 + depends on BLK_DEV_DM 235 235 ---help--- 236 236 Allow volume managers to take writable snapshots of a device. 237 237 238 238 config DM_MIRROR 239 - tristate "Mirror target (EXPERIMENTAL)" 240 - depends on BLK_DEV_DM && EXPERIMENTAL 239 + tristate "Mirror target" 240 + depends on BLK_DEV_DM 241 241 ---help--- 242 242 Allow volume managers to mirror logical volumes, also 243 243 needed for live data migration tools such as 'pvmove'. 244 244 245 245 config DM_ZERO 246 - tristate "Zero target (EXPERIMENTAL)" 247 - depends on BLK_DEV_DM && EXPERIMENTAL 246 + tristate "Zero target" 247 + depends on BLK_DEV_DM 248 248 ---help--- 249 249 A target that discards writes, and returns all zeroes for 250 250 reads. Useful in some recovery situations. 251 251 252 252 config DM_MULTIPATH 253 - tristate "Multipath target (EXPERIMENTAL)" 254 - depends on BLK_DEV_DM && EXPERIMENTAL 253 + tristate "Multipath target" 254 + depends on BLK_DEV_DM 255 255 ---help--- 256 256 Allow volume managers to support multipath hardware. 257 257 258 258 config DM_MULTIPATH_EMC 259 - tristate "EMC CX/AX multipath support (EXPERIMENTAL)" 260 - depends on DM_MULTIPATH && BLK_DEV_DM && EXPERIMENTAL 259 + tristate "EMC CX/AX multipath support" 260 + depends on DM_MULTIPATH && BLK_DEV_DM 261 261 ---help--- 262 262 Multipath support for EMC CX/AX series hardware. 263 263