diff options
author | Eric Dumazet <edumazet@google.com> | 2015-02-27 04:08:59 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-02-28 22:56:51 +0100 |
commit | 74abc20cedf6f95a0065665c55180ef2d4828ba5 (patch) | |
tree | 41ee897ae926f53cd1ae0bc03c80e2de4857bacb /net/ipv4/tcp_offload.c | |
parent | hyperv: Implement netvsc_get_channels() ethool op (diff) | |
download | linux-74abc20cedf6f95a0065665c55180ef2d4828ba5.tar.xz linux-74abc20cedf6f95a0065665c55180ef2d4828ba5.zip |
tcp: cleanup static functions
tcp_fastopen_create_child() is static and should not be exported.
tcp4_gso_segment() and tcp6_gso_segment() should be static.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_offload.c')
-rw-r--r-- | net/ipv4/tcp_offload.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/tcp_offload.c b/net/ipv4/tcp_offload.c index 9d7930ba8e0f..3f7c2fca5431 100644 --- a/net/ipv4/tcp_offload.c +++ b/net/ipv4/tcp_offload.c @@ -29,8 +29,8 @@ static void tcp_gso_tstamp(struct sk_buff *skb, unsigned int ts_seq, } } -struct sk_buff *tcp4_gso_segment(struct sk_buff *skb, - netdev_features_t features) +static struct sk_buff *tcp4_gso_segment(struct sk_buff *skb, + netdev_features_t features) { if (!pskb_may_pull(skb, sizeof(struct tcphdr))) return ERR_PTR(-EINVAL); |