aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2022-07-22 12:41:14 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2022-07-22 12:41:14 -0700
commitd945404f74f34b76cb02d73025b92ce8b4729d3f (patch)
tree13557a2276eedf91db897c26d60f51504ddc3c40
parent4a1dcf77f47ec45e4c66787b2cd47f8b768c74da (diff)
parent82e094f7bd988c02df27f8c8d81af8f750660b2a (diff)
downloadlinux-gpio-intel-d945404f74f34b76cb02d73025b92ce8b4729d3f.tar.gz
Merge tag 'block-5.19-2022-07-21' of git://git.kernel.dk/linux-block
Pull block fix from Jens Axboe: "Just a single fix for missing error propagation for an allocation failure in raid5" * tag 'block-5.19-2022-07-21' of git://git.kernel.dk/linux-block: md/raid5: missing error code in setup_conf()
-rw-r--r--drivers/md/raid5.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c
index 20e53b167f81f5..c8539d0e12dd76 100644
--- a/drivers/md/raid5.c
+++ b/drivers/md/raid5.c
@@ -7304,7 +7304,9 @@ static struct r5conf *setup_conf(struct mddev *mddev)
goto abort;
conf->mddev = mddev;
- if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
+ ret = -ENOMEM;
+ conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL);
+ if (!conf->stripe_hashtbl)
goto abort;
/* We init hash_locks[0] separately to that it can be used