dm exception store: fix init error path
authorAndrei Warkentin <[email protected]>
Wed, 28 Mar 2012 17:41:22 +0000 (18:41 +0100)
committerAlasdair G Kergon <[email protected]>
Wed, 28 Mar 2012 17:41:22 +0000 (18:41 +0100)
Call the correct exit function on failure in dm_exception_store_init.

Signed-off-by: Andrei Warkentin <[email protected]>
Acked-by: Mike Snitzer <[email protected]>
Cc: [email protected]
Signed-off-by: Alasdair G Kergon <[email protected]>
drivers/md/dm-exception-store.c

index 042e71996569b963a6d9ec1addd4ae5aab97a23c..aa70f7d43a1ab87750cee933d244eb098cb8d92b 100644 (file)
@@ -283,7 +283,7 @@ int dm_exception_store_init(void)
        return 0;
 
 persistent_fail:
-       dm_persistent_snapshot_exit();
+       dm_transient_snapshot_exit();
 transient_fail:
        return r;
 }