s390/dasd: fix error checks in dasd_copy_pair_store()
authorCarlos López <clopez@suse.de>
Mon, 15 Jul 2024 11:24:34 +0000 (13:24 +0200)
committerJens Axboe <axboe@kernel.dk>
Mon, 15 Jul 2024 16:57:39 +0000 (10:57 -0600)
commit8e64d2356cbc800b4cd0e3e614797f76bcf0cdb8
treef66033a2029ee472f688560d4eda7f0de5424fe8
parent1f5a33315362cb8ade2b15489c985ada0cc8623b
s390/dasd: fix error checks in dasd_copy_pair_store()

dasd_add_busid() can return an error via ERR_PTR() if an allocation
fails. However, two callsites in dasd_copy_pair_store() do not check
the result, potentially resulting in a NULL pointer dereference. Fix
this by checking the result with IS_ERR() and returning the error up
the stack.

Fixes: a91ff09d39f9b ("s390/dasd: add copy pair setup")
Signed-off-by: Carlos López <clopez@suse.de>
Signed-off-by: Stefan Haberland <sth@linux.ibm.com>
Link: https://lore.kernel.org/r/20240715112434.2111291-3-sth@linux.ibm.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/s390/block/dasd_devmap.c