diff options
author | Tariq Toukan <tariqt@mellanox.com> | 2020-06-25 22:59:43 -0700 |
---|---|---|
committer | Saeed Mahameed <saeedm@mellanox.com> | 2020-06-27 13:50:46 -0700 |
commit | 2d1b69ed65ee033aa541518cc9f6a815296ac493 (patch) | |
tree | 485252ef90e85c4e79e49398be630ae14d293b0f /include/linux/mlx5/qp.h | |
parent | 188f0f988bdf27a94208568314e3b0c012d1629c (diff) |
net/mlx5: kTLS, Improve TLS params layout structures
Add explicit WQE segment structures for the TLS static and progress
params.
According to the HW spec, TISN is not part of the progress params context,
take it out of it.
Rename the control segment tisn field as it could hold either a TIS or
a TIR number.
Signed-off-by: Tariq Toukan <tariqt@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
Diffstat (limited to 'include/linux/mlx5/qp.h')
-rw-r--r-- | include/linux/mlx5/qp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mlx5/qp.h b/include/linux/mlx5/qp.h index b8992b861ae6..36492a1342cf 100644 --- a/include/linux/mlx5/qp.h +++ b/include/linux/mlx5/qp.h @@ -209,7 +209,7 @@ struct mlx5_wqe_ctrl_seg { __be32 general_id; __be32 imm; __be32 umr_mkey; - __be32 tisn; + __be32 tis_tir_num; }; }; |