diff mbox series

vhost scsi: fix error return code in vhost_scsi_set_endpoint()

Message ID 1607071411-33484-1-git-send-email-zhangchangzhong@huawei.com
State New
Headers show
Series vhost scsi: fix error return code in vhost_scsi_set_endpoint() | expand

Commit Message

Zhang Changzhong Dec. 4, 2020, 8:43 a.m. UTC
Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.

Fixes: 25b98b64e284 ("vhost scsi: alloc cmds per vq instead of session")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zhang Changzhong <zhangchangzhong@huawei.com>
---
 drivers/vhost/scsi.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Jason Wang Dec. 7, 2020, 5:17 a.m. UTC | #1
On 2020/12/4 下午4:43, Zhang Changzhong wrote:
> Fix to return a negative error code from the error handling

> case instead of 0, as done elsewhere in this function.

>

> Fixes: 25b98b64e284 ("vhost scsi: alloc cmds per vq instead of session")

> Reported-by: Hulk Robot <hulkci@huawei.com>

> Signed-off-by: Zhang Changzhong <zhangchangzhong@huawei.com>

> ---

>   drivers/vhost/scsi.c | 3 ++-

>   1 file changed, 2 insertions(+), 1 deletion(-)

>

> diff --git a/drivers/vhost/scsi.c b/drivers/vhost/scsi.c

> index 6ff8a5096..4ce9f00 100644

> --- a/drivers/vhost/scsi.c

> +++ b/drivers/vhost/scsi.c

> @@ -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;

>   		}

>   



Acked-by: Jason Wang <jasowang@redhat.com>
Stefan Hajnoczi Dec. 7, 2020, 4:07 p.m. UTC | #2
On Fri, Dec 04, 2020 at 04:43:30PM +0800, Zhang Changzhong wrote:
> Fix to return a negative error code from the error handling

> case instead of 0, as done elsewhere in this function.

> 

> Fixes: 25b98b64e284 ("vhost scsi: alloc cmds per vq instead of session")

> Reported-by: Hulk Robot <hulkci@huawei.com>

> Signed-off-by: Zhang Changzhong <zhangchangzhong@huawei.com>

> ---

>  drivers/vhost/scsi.c | 3 ++-

>  1 file changed, 2 insertions(+), 1 deletion(-)


Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
diff mbox series

Patch

diff --git a/drivers/vhost/scsi.c b/drivers/vhost/scsi.c
index 6ff8a5096..4ce9f00 100644
--- a/drivers/vhost/scsi.c
+++ b/drivers/vhost/scsi.c
@@ -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;
 		}