diff options
author | Jia-Ju Bai <baijiaju1990@gmail.com> | 2022-05-27 18:28:18 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-05-27 18:49:48 +0300 |
commit | 40f567bbb3b0639d2ec7d1c6ad4b1b018f80cf19 (patch) | |
tree | 0557e29ac47e09c9183fba2d9e09a085b63be377 /drivers/md/bcache/request.c | |
parent | 7d6b902ea0e02b2a25c480edf471cbaa4ebe6b3c (diff) | |
download | linux-40f567bbb3b0639d2ec7d1c6ad4b1b018f80cf19.tar.xz |
md: bcache: check the return value of kzalloc() in detached_dev_do_request()
The function kzalloc() in detached_dev_do_request() can fail, so its
return value should be checked.
Fixes: bc082a55d25c ("bcache: fix inaccurate io state for detached bcache devices")
Reported-by: TOTE Robot <oslab@tsinghua.edu.cn>
Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
Signed-off-by: Coly Li <colyli@suse.de>
Link: https://lore.kernel.org/r/20220527152818.27545-4-colyli@suse.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/md/bcache/request.c')
-rw-r--r-- | drivers/md/bcache/request.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/md/bcache/request.c b/drivers/md/bcache/request.c index e27f67f06a42..566838b40f10 100644 --- a/drivers/md/bcache/request.c +++ b/drivers/md/bcache/request.c @@ -1105,6 +1105,12 @@ static void detached_dev_do_request(struct bcache_device *d, struct bio *bio, * which would call closure_get(&dc->disk.cl) */ ddip = kzalloc(sizeof(struct detached_dev_io_private), GFP_NOIO); + if (!ddip) { + bio->bi_status = BLK_STS_RESOURCE; + bio->bi_end_io(bio); + return; + } + ddip->d = d; /* Count on the bcache device */ ddip->orig_bdev = orig_bdev; |