mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 22:14:04 +02:00
vhost scsi: fix error return code in vhost_scsi_set_endpoint()
[ Upstream commit2e1139d613] Fix to return a negative error code from the error handling case instead of 0, as done elsewhere in this function. Fixes:25b98b64e2("vhost scsi: alloc cmds per vq instead of session") Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Zhang Changzhong <zhangchangzhong@huawei.com> Link: https://lore.kernel.org/r/1607071411-33484-1-git-send-email-zhangchangzhong@huawei.com Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
dbdfefc71a
commit
b7bc097f29
|
|
@ -1643,7 +1643,8 @@ vhost_scsi_set_endpoint(struct vhost_scsi *vs,
|
|||
if (!vhost_vq_is_setup(vq))
|
||||
continue;
|
||||
|
||||
if (vhost_scsi_setup_vq_cmds(vq, vq->num))
|
||||
ret = vhost_scsi_setup_vq_cmds(vq, vq->num);
|
||||
if (ret)
|
||||
goto destroy_vq_cmds;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user