]> git.karo-electronics.de Git - karo-tx-linux.git/commit
md: raid0: fix error return from create_stripe_zones.
authorNeilBrown <neilb@suse.de>
Thu, 21 Feb 2013 04:36:38 +0000 (15:36 +1100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 14 Mar 2013 18:32:05 +0000 (11:32 -0700)
commitd726c470444d85b2cb8cf2dd87f038bb04292b00
tree0704c8617a78f63319cb848a880a1c004326ca8e
parentb77a7b64bd40be69cf9e4476640349f9ad98fb88
md: raid0: fix error return from create_stripe_zones.

commit 58ebb34c49fcfcaa029e4b1c1453d92583900f9a upstream.

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.

Signed-off-by: NeilBrown <neilb@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/md/raid0.c