summaryrefslogtreecommitdiffstats
path: root/Grow.c
diff options
context:
space:
mode:
authorJes Sorensen <Jes.Sorensen@redhat.com>2016-05-12 21:19:16 +0200
committerJes Sorensen <Jes.Sorensen@redhat.com>2016-05-12 21:19:16 +0200
commit2ec2b7e9d5b6b4f3611f639ee5d221e03de18c61 (patch)
treefc4f373cb27339c457a2f1332031ae4f2674d94e /Grow.c
parentGrow: Handle failure to load superblock in Grow_addbitmap() (diff)
downloadmdadm-2ec2b7e9d5b6b4f3611f639ee5d221e03de18c61.tar.xz
mdadm-2ec2b7e9d5b6b4f3611f639ee5d221e03de18c61.zip
mdadm: Make add_internal_bitmap() return 0 on success
add_internal_bitmap() returned 1 on success and 0 on error which is inconsistent. This changes it to return 0 on success and use more reasonable error codes on error. Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Diffstat (limited to 'Grow.c')
-rwxr-xr-xGrow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Grow.c b/Grow.c
index 580c13e1..cdd9d05b 100755
--- a/Grow.c
+++ b/Grow.c
@@ -423,7 +423,7 @@ int Grow_addbitmap(char *devname, int fd, struct context *c, struct shape *s)
continue;
rv = st->ss->load_super(st, fd2, NULL);
if (!rv) {
- if (st->ss->add_internal_bitmap(
+ if (!st->ss->add_internal_bitmap(
st, &s->bitmap_chunk, c->delay,
s->write_behind, bitmapsize,
offset_setable, major))