md: raid0: fix error return from create_stripe_zones.
authorNeilBrown <neilb@suse.de>
Thu, 21 Feb 2013 04:36:38 +0000 (15:36 +1100)
committerNeilBrown <neilb@suse.de>
Tue, 26 Feb 2013 00:57:04 +0000 (11:57 +1100)
Create_stripe_zones returns an error slightly differently to
raid0_run and to raid0_takeover_*.

The error returned used by the second was wrong and an error would
result in mddev->private being set to NULL and sooner or later a
crash.

So never return NULL, return ERR_PTR(err), not NULL from
create_stripe_zones.

This bug has been present since 2.6.35 so the fix is suitable
for any kernel since then.

Cc: stable@vger.kernel.org
Signed-off-by: NeilBrown <neilb@suse.de>
drivers/md/raid0.c

index 15c8d3505450d03409ae0b46252025810bdc9134..d9babda582b913caaf1260bd0c0fe625dcee1b9f 100644 (file)
@@ -289,7 +289,7 @@ abort:
        kfree(conf->strip_zone);
        kfree(conf->devlist);
        kfree(conf);
-       *private_conf = NULL;
+       *private_conf = ERR_PTR(err);
        return err;
 }