diff options
author | Eric Dumazet <edumazet@google.com> | 2025-02-06 09:34:36 +0000 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2025-02-07 11:52:39 -0800 |
commit | d876ec8d3ed3e2f9d29ed866248a294d71e40d86 (patch) | |
tree | 4fef435adaa46794d50b4c8c403431c69dbb4f60 /net/ipv4/tcp_input.c | |
parent | a494d1512c7c7ba2a05bac51ed4b133baa2a9bc8 (diff) |
tcp: do not export tcp_parse_mss_option() and tcp_mtup_init()
These two functions are not called from modules.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Reviewed-by: Joe Damato <jdamato@fastly.com>
Reviewed-by: Kuniyuki Iwashima <kuniyu@amazon.com>
Link: https://patch.msgid.link/20250206093436.2609008-1-edumazet@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/ipv4/tcp_input.c')
-rw-r--r-- | net/ipv4/tcp_input.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index eb82e01da911..61da8ffc2f86 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c @@ -4174,7 +4174,6 @@ u16 tcp_parse_mss_option(const struct tcphdr *th, u16 user_mss) } return mss; } -EXPORT_SYMBOL_GPL(tcp_parse_mss_option); /* Look for tcp options. Normally only called on SYN and SYNACK packets. * But, this can also be called on packets in the established flow when |