diff options
author | Yue Haibing <yuehaibing@huawei.com> | 2023-08-11 11:50:10 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-08-13 13:25:42 +0200 |
commit | 2b8893b639e4ad38fa0a941d665e827963ede727 (patch) | |
tree | 835b084c521745ae3777fad08b9c05c1fe27bf60 /net/rds/tcp.h | |
parent | netlink: convert nlk->flags to atomic flags (diff) | |
download | linux-2b8893b639e4ad38fa0a941d665e827963ede727.tar.xz linux-2b8893b639e4ad38fa0a941d665e827963ede727.zip |
net/rds: Remove unused function declarations
Commit 39de8281791c ("RDS: Main header file") declared but never implemented
rds_trans_init() and rds_trans_exit(), remove it.
Commit d37c9359056f ("RDS: Move loop-only function to loop.c") removed the
implementation rds_message_inc_free() but not the declaration.
Since commit 55b7ed0b582f ("RDS: Common RDMA transport code")
rds_rdma_conn_connect() is never implemented and used.
rds_tcp_map_seq() is never implemented and used since
commit 70041088e3b9 ("RDS: Add TCP transport to RDS").
Signed-off-by: Yue Haibing <yuehaibing@huawei.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rds/tcp.h')
-rw-r--r-- | net/rds/tcp.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/rds/tcp.h b/net/rds/tcp.h index f8b5930d7b34..053aa7da87ef 100644 --- a/net/rds/tcp.h +++ b/net/rds/tcp.h @@ -56,7 +56,6 @@ void rds_tcp_restore_callbacks(struct socket *sock, struct rds_tcp_connection *tc); u32 rds_tcp_write_seq(struct rds_tcp_connection *tc); u32 rds_tcp_snd_una(struct rds_tcp_connection *tc); -u64 rds_tcp_map_seq(struct rds_tcp_connection *tc, u32 seq); extern struct rds_transport rds_tcp_transport; void rds_tcp_accept_work(struct sock *sk); int rds_tcp_laddr_check(struct net *net, const struct in6_addr *addr, |