mirror of
https://github.com/torvalds/linux.git
synced 2024-12-01 08:31:37 +00:00
nvmet-tcp: fix endianess annotations
Signed-off-by: Christoph Hellwig <hch@lst.de> Acked-by: Sagi Grimberg <sagi@grimberg.me>
This commit is contained in:
parent
91a509f8b7
commit
f4d10b5c85
@ -758,7 +758,7 @@ static int nvmet_tcp_handle_icreq(struct nvmet_tcp_queue *queue)
|
||||
|
||||
if (icreq->maxr2t != 0) {
|
||||
pr_err("queue %d: unsupported maxr2t %d\n", queue->idx,
|
||||
le16_to_cpu(icreq->maxr2t) + 1);
|
||||
le32_to_cpu(icreq->maxr2t) + 1);
|
||||
return -EPROTO;
|
||||
}
|
||||
|
||||
@ -776,7 +776,7 @@ static int nvmet_tcp_handle_icreq(struct nvmet_tcp_queue *queue)
|
||||
icresp->hdr.pdo = 0;
|
||||
icresp->hdr.plen = cpu_to_le32(icresp->hdr.hlen);
|
||||
icresp->pfv = cpu_to_le16(NVME_TCP_PFV_1_0);
|
||||
icresp->maxdata = 0xffff; /* FIXME: support r2t */
|
||||
icresp->maxdata = cpu_to_le32(0xffff); /* FIXME: support r2t */
|
||||
icresp->cpda = 0;
|
||||
if (queue->hdr_digest)
|
||||
icresp->digest |= NVME_TCP_HDR_DIGEST_ENABLE;
|
||||
|
Loading…
Reference in New Issue
Block a user