mirror of
https://github.com/torvalds/linux.git
synced 2026-06-06 21:45:45 +02:00
nvmet-tcp: fix incomplete data digest send
[ Upstream commit102110efdf] Current nvmet_try_send_ddgst() code does not check whether all data digest bytes are transmitted, fix this by returning -EAGAIN if all data digest bytes are not transmitted. Fixes:872d26a391("nvmet-tcp: add NVMe over TCP target driver") Signed-off-by: Varun Prakash <varun@chelsio.com> Reviewed-by: Sagi Grimberg <sagi@grimberg.me> Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
8889ff80fd
commit
ac88cb3c44
|
|
@ -688,10 +688,11 @@ static int nvmet_try_send_r2t(struct nvmet_tcp_cmd *cmd, bool last_in_batch)
|
||||||
static int nvmet_try_send_ddgst(struct nvmet_tcp_cmd *cmd, bool last_in_batch)
|
static int nvmet_try_send_ddgst(struct nvmet_tcp_cmd *cmd, bool last_in_batch)
|
||||||
{
|
{
|
||||||
struct nvmet_tcp_queue *queue = cmd->queue;
|
struct nvmet_tcp_queue *queue = cmd->queue;
|
||||||
|
int left = NVME_TCP_DIGEST_LENGTH - cmd->offset;
|
||||||
struct msghdr msg = { .msg_flags = MSG_DONTWAIT };
|
struct msghdr msg = { .msg_flags = MSG_DONTWAIT };
|
||||||
struct kvec iov = {
|
struct kvec iov = {
|
||||||
.iov_base = (u8 *)&cmd->exp_ddgst + cmd->offset,
|
.iov_base = (u8 *)&cmd->exp_ddgst + cmd->offset,
|
||||||
.iov_len = NVME_TCP_DIGEST_LENGTH - cmd->offset
|
.iov_len = left
|
||||||
};
|
};
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
|
@ -705,6 +706,10 @@ static int nvmet_try_send_ddgst(struct nvmet_tcp_cmd *cmd, bool last_in_batch)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
cmd->offset += ret;
|
cmd->offset += ret;
|
||||||
|
left -= ret;
|
||||||
|
|
||||||
|
if (left)
|
||||||
|
return -EAGAIN;
|
||||||
|
|
||||||
if (queue->nvme_sq.sqhd_disabled) {
|
if (queue->nvme_sq.sqhd_disabled) {
|
||||||
cmd->queue->snd_cmd = NULL;
|
cmd->queue->snd_cmd = NULL;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user