diff options
| author | Hannes Reinecke <hare@suse.de> | 2023-08-24 17:39:11 +0300 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-06-12 12:12:53 +0300 |
| commit | 87d78f7eb76b4f82c2c923a0410371a51f4669fe (patch) | |
| tree | 99294adf4df8cf22f495460720b7272a50b27526 /include/linux | |
| parent | 5a91116b003175302f2e6ad94b76fb9b5a141a41 (diff) | |
| download | linux-87d78f7eb76b4f82c2c923a0410371a51f4669fe.tar.xz | |
nvme-tcp: add definitions for TLS cipher suites
[ Upstream commit a86062aac34d100a3117c0fff91ee1892ebfb460 ]
Signed-off-by: Hannes Reinecke <hare@suse.de>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Keith Busch <kbusch@kernel.org>
Stable-dep-of: a2e4c5f5f68d ("nvme-multipath: fix io accounting on failover")
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/nvme-tcp.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/nvme-tcp.h b/include/linux/nvme-tcp.h index 57ebe1267f7f..e07e8978d691 100644 --- a/include/linux/nvme-tcp.h +++ b/include/linux/nvme-tcp.h @@ -18,6 +18,12 @@ enum nvme_tcp_pfv { NVME_TCP_PFV_1_0 = 0x0, }; +enum nvme_tcp_tls_cipher { + NVME_TCP_TLS_CIPHER_INVALID = 0, + NVME_TCP_TLS_CIPHER_SHA256 = 1, + NVME_TCP_TLS_CIPHER_SHA384 = 2, +}; + enum nvme_tcp_fatal_error_status { NVME_TCP_FES_INVALID_PDU_HDR = 0x01, NVME_TCP_FES_PDU_SEQ_ERR = 0x02, |
