aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNavdeep Parhar <np@FreeBSD.org>2026-06-03 05:16:13 +0000
committerNavdeep Parhar <np@FreeBSD.org>2026-06-03 06:38:07 +0000
commit309fc9f765917fa032cdae7043bafffb6da5713b (patch)
tree2e734077d09bdd2b4ba88fa8075a1619b69b3b5e
parent4b6887e3863881ff3be447c00fa2ae0c563550c5 (diff)
cxgbe(4): Use correct FID in KTLS tx work requests
MFC after: 1 week Sponsored by: Chelsio Communications
-rw-r--r--sys/dev/cxgbe/crypto/t7_kern_tls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/cxgbe/crypto/t7_kern_tls.c b/sys/dev/cxgbe/crypto/t7_kern_tls.c
index b6078b9b53b6..2cde8ff28794 100644
--- a/sys/dev/cxgbe/crypto/t7_kern_tls.c
+++ b/sys/dev/cxgbe/crypto/t7_kern_tls.c
@@ -1557,7 +1557,7 @@ ktls_write_tls_wr(struct tlspcb *tlsp, struct sge_txq *txq,
V_T7_ULP_TXPKT_CHANNELID(tlsp->vi->pi->port_id) |
V_ULP_TXPKT_DEST(0) |
V_ULP_TXPKT_CMDMORE(request_ghash ? 1 : 0) |
- V_ULP_TXPKT_FID(txq->eq.cntxt_id) | V_ULP_TXPKT_RO(1));
+ V_ULP_TXPKT_FID(txq->eq.iqid) | V_ULP_TXPKT_RO(1));
txpkt->len = htobe32(howmany(txpkt_lens[0], 16));
/* ULPTX_IDATA sub-command */
@@ -1949,7 +1949,7 @@ ktls_write_tls_wr(struct tlspcb *tlsp, struct sge_txq *txq,
V_ULP_TXPKT_DATAMODIFY(0) |
V_T7_ULP_TXPKT_CHANNELID(tlsp->vi->pi->port_id) |
V_ULP_TXPKT_DEST(0) |
- V_ULP_TXPKT_FID(txq->eq.cntxt_id) | V_ULP_TXPKT_RO(1));
+ V_ULP_TXPKT_FID(txq->eq.iqid) | V_ULP_TXPKT_RO(1));
txpkt->len = htobe32(howmany(txpkt_lens[1], 16));
/* ULPTX_IDATA sub-command */