aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md/dm-exception-store.c
diff options
context:
space:
mode:
authorMikulas Patocka <mpatocka@redhat.com>2009-10-16 23:18:16 +0100
committerAlasdair G Kergon <agk@redhat.com>2009-10-16 23:18:16 +0100
commit0e8c4e4e3ebb15756ddc4170a88149a2cd323cfe (patch)
treead9b86c435b138ceeab8222c96064586b9dda7af /drivers/md/dm-exception-store.c
parentdm snapshot: require non zero chunk size by end of ctr (diff)
downloadlinux-dev-0e8c4e4e3ebb15756ddc4170a88149a2cd323cfe.tar.xz
linux-dev-0e8c4e4e3ebb15756ddc4170a88149a2cd323cfe.zip
dm exception store: fix failed set_chunk_size error path
Properly close the device if failing because of an invalid chunk size. Cc: stable@kernel.org Signed-off-by: Mikulas Patocka <mpatocka@redhat.com> Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'drivers/md/dm-exception-store.c')
-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 556acff3952f..e5de7627c52d 100644
--- a/drivers/md/dm-exception-store.c
+++ b/drivers/md/dm-exception-store.c
@@ -251,7 +251,7 @@ int dm_exception_store_create(struct dm_target *ti, int argc, char **argv,
r = set_chunk_size(tmp_store, argv[2], &ti->error);
if (r)
- goto bad_cow;
+ goto bad_ctr;
r = type->ctr(tmp_store, 0, NULL);
if (r) {