mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 14:04:54 +02:00
RDMA/srpt: Fix error return code in srpt_cm_req_recv()
[ Upstream commit6bc950beff] Fix to return a negative error code from the error handling case instead of 0, as done elsewhere in this function. Fixes:db7683d7de("IB/srpt: Fix login-related race conditions") Link: https://lore.kernel.org/r/20210408113132.87250-1-wangwensheng4@huawei.com Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Wang Wensheng <wangwensheng4@huawei.com> Reviewed-by: Bart Van Assche <bvanassche@acm.org> Signed-off-by: Jason Gunthorpe <jgg@nvidia.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
4601bcc641
commit
6a07e5e39d
|
|
@ -2378,6 +2378,7 @@ static int srpt_cm_req_recv(struct srpt_device *const sdev,
|
||||||
pr_info("rejected SRP_LOGIN_REQ because target %s_%d is not enabled\n",
|
pr_info("rejected SRP_LOGIN_REQ because target %s_%d is not enabled\n",
|
||||||
dev_name(&sdev->device->dev), port_num);
|
dev_name(&sdev->device->dev), port_num);
|
||||||
mutex_unlock(&sport->mutex);
|
mutex_unlock(&sport->mutex);
|
||||||
|
ret = -EINVAL;
|
||||||
goto reject;
|
goto reject;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user