chelsio/chtls: Remove unused chtls_set_tcb_tflag
authorDr. David Alan Gilbert <linux@treblig.org>
Mon, 7 Oct 2024 00:46:52 +0000 (01:46 +0100)
committerJakub Kicinski <kuba@kernel.org>
Tue, 8 Oct 2024 22:34:38 +0000 (15:34 -0700)
chtls_set_tcb_tflag() has been unused since 2021's commit
827d329105bf ("chtls: Remove invalid set_tcb call")

Remove it.

Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://patch.msgid.link/20241007004652.150065-1-linux@treblig.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls.h
drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_hw.c

index 7ff82b6778bad1d3b28f148306ddc911c597d86f..21e0dfeff1585d4316485889bfb30e30b2251893 100644 (file)
@@ -573,7 +573,6 @@ int send_tx_flowc_wr(struct sock *sk, int compl,
                     u32 snd_nxt, u32 rcv_nxt);
 void chtls_tcp_push(struct sock *sk, int flags);
 int chtls_push_frames(struct chtls_sock *csk, int comp);
-int chtls_set_tcb_tflag(struct sock *sk, unsigned int bit_pos, int val);
 void chtls_set_tcb_field_rpl_skb(struct sock *sk, u16 word,
                                 u64 mask, u64 val, u8 cookie,
                                 int through_l2t);
index 1e67140b0f8013633566ca244c4a5d04b4869251..fab6df21f01c98af4b1d65bba2e4fd51bc6eb518 100644 (file)
@@ -106,15 +106,6 @@ void chtls_set_tcb_field_rpl_skb(struct sock *sk, u16 word,
        send_or_defer(sk, tcp_sk(sk), skb, through_l2t);
 }
 
-/*
- * Set one of the t_flags bits in the TCB.
- */
-int chtls_set_tcb_tflag(struct sock *sk, unsigned int bit_pos, int val)
-{
-       return chtls_set_tcb_field(sk, 1, 1ULL << bit_pos,
-                                  (u64)val << bit_pos);
-}
-
 static int chtls_set_tcb_keyid(struct sock *sk, int keyid)
 {
        return chtls_set_tcb_field(sk, 31, 0xFFFFFFFFULL, keyid);