diff options
author | Linus Torvalds | 2022-07-22 12:41:14 -0700 |
---|---|---|
committer | Linus Torvalds | 2022-07-22 12:41:14 -0700 |
commit | d945404f74f34b76cb02d73025b92ce8b4729d3f (patch) | |
tree | 13557a2276eedf91db897c26d60f51504ddc3c40 | |
parent | 4a1dcf77f47ec45e4c66787b2cd47f8b768c74da (diff) | |
parent | 82e094f7bd988c02df27f8c8d81af8f750660b2a (diff) |
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.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c index 20e53b167f81..c8539d0e12dd 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 |