aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md
diff options
context:
space:
mode:
authorAndrei Warkentin <andrey.warkentin@gmail.com>2012-03-28 18:41:22 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-04-02 09:27:19 -0700
commita405fc43be9397d51a2d0bd8984e1a8c5002c944 (patch)
treecefb9fec96eb34cca0de49ed48347ee47350d85f /drivers/md
parent94b1a66ccfb495935057de978ef4a6fc22de85d8 (diff)
downloadkernel_samsung_smdk4412-a405fc43be9397d51a2d0bd8984e1a8c5002c944.zip
kernel_samsung_smdk4412-a405fc43be9397d51a2d0bd8984e1a8c5002c944.tar.gz
kernel_samsung_smdk4412-a405fc43be9397d51a2d0bd8984e1a8c5002c944.tar.bz2
dm exception store: fix init error path
commit aadbe266f2f89ccc68b52f4effc7b3a8b29521ef upstream. Call the correct exit function on failure in dm_exception_store_init. Signed-off-by: Andrei Warkentin <andrey.warkentin@gmail.com> Acked-by: Mike Snitzer <snitzer@redhat.com> Signed-off-by: Alasdair G Kergon <agk@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/md')
-rw-r--r--drivers/md/dm-exception-store.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-exception-store.c b/drivers/md/dm-exception-store.c
index 0bdb201..7344534 100644
--- a/drivers/md/dm-exception-store.c
+++ b/drivers/md/dm-exception-store.c
@@ -282,7 +282,7 @@ int dm_exception_store_init(void)
return 0;
persistent_fail:
- dm_persistent_snapshot_exit();
+ dm_transient_snapshot_exit();
transient_fail:
return r;
}