[PATCH 1 of 1] dm exception store: exstore type lookup should be case insensitive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This two line patch will fix the regressions some users are experiencing
with device-mapper snapshots.

 brassow

When snapshots are created using 'p' instead of 'P' as the
exception store type, the device-mapper table loading would
fail.

This patch allows the code to be case insensitive.

Signed-off-by: Jonathan Brassow <jbrassow@xxxxxxxxxx>

Index: linux-2.6/drivers/md/dm-exception-store.c
===================================================================
--- linux-2.6.orig/drivers/md/dm-exception-store.c
+++ linux-2.6/drivers/md/dm-exception-store.c
@@ -215,6 +215,7 @@ int dm_exception_store_create(struct dm_
 		ti->error = "Persistent flag is not P or N";
 		return -EINVAL;
 	}
+	*argv[1] = persistent;
 
 	type = get_type(argv[1]);
 	if (!type) {


--
dm-devel mailing list
dm-devel@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/dm-devel

[Index of Archives]     [DM Crypt]     [Fedora Desktop]     [ATA RAID]     [Fedora Marketing]     [Fedora Packaging]     [Fedora SELinux]     [Yosemite Discussion]     [KDE Users]     [Fedora Docs]

  Powered by Linux