mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-14 10:47:35 +07:00
csiostor: fix an error code in csio_hw_init()
We should return -ENOMEM if kzalloc() fails here instead of returning success. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Reviewed-by: Tomas Henzl <thenzl@redhat.com> Signed-off-by: James Bottomley <JBottomley@Odin.com>
This commit is contained in:
parent
0d143c69a3
commit
ea47ebf15d
@ -3928,6 +3928,7 @@ csio_hw_init(struct csio_hw *hw)
|
|||||||
|
|
||||||
evt_entry = kzalloc(sizeof(struct csio_evt_msg), GFP_KERNEL);
|
evt_entry = kzalloc(sizeof(struct csio_evt_msg), GFP_KERNEL);
|
||||||
if (!evt_entry) {
|
if (!evt_entry) {
|
||||||
|
rv = -ENOMEM;
|
||||||
csio_err(hw, "Failed to initialize eventq");
|
csio_err(hw, "Failed to initialize eventq");
|
||||||
goto err_evtq_cleanup;
|
goto err_evtq_cleanup;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user