summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2023-03-23 22:02:20 +0300
committerJens Axboe <axboe@kernel.dk>2023-03-23 22:02:20 +0300
commitf915da0f0dfb69ffea53f62101b38073e0b81f73 (patch)
treedd1ab337c4a58a228ff1aeb4d5d9258c27f1acb1 /include
parent9d2789ac9d60c049d26ef6d3005d9c94c5a559e9 (diff)
parentaa01c67de5926fdb276793180564f172c55fb0d7 (diff)
downloadlinux-f915da0f0dfb69ffea53f62101b38073e0b81f73.tar.xz
Merge tag 'nvme-6.3-2023-03-23' of git://git.infradead.org/nvme into block-6.3
Pull NVMe fixes from Christoph: "nvme fixes for Linux 6.3 - send Identify with CNS 06h only to I/O controllers (Martin George) - fix nvme_tcp_term_pdu to match spec (Caleb Sander)" * tag 'nvme-6.3-2023-03-23' of git://git.infradead.org/nvme: nvme-tcp: fix nvme_tcp_term_pdu to match spec nvme: send Identify with CNS 06h only to I/O controllers
Diffstat (limited to 'include')
-rw-r--r--include/linux/nvme-tcp.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/nvme-tcp.h b/include/linux/nvme-tcp.h
index 75470159a194..57ebe1267f7f 100644
--- a/include/linux/nvme-tcp.h
+++ b/include/linux/nvme-tcp.h
@@ -115,8 +115,9 @@ struct nvme_tcp_icresp_pdu {
struct nvme_tcp_term_pdu {
struct nvme_tcp_hdr hdr;
__le16 fes;
- __le32 fei;
- __u8 rsvd[8];
+ __le16 feil;
+ __le16 feiu;
+ __u8 rsvd[10];
};
/**