diff options
author | Adrian Bunk <bunk@stusta.de> | 2005-08-09 22:35:47 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2005-08-29 18:33:20 -0400 |
commit | 0742fd53a3774781255bd1e471e7aa2e4a82d5f7 (patch) | |
tree | 020e6d1ccb1d7ce07cdb26b7317fa2ca58e689b3 /net/ipv4/ip_output.c | |
parent | f2ccd8fa06c8e302116e71df372f5c1f83432e03 (diff) |
[IPV4]: possible cleanups
This patch contains the following possible cleanups:
- make needlessly global code static
- #if 0 the following unused global function:
- xfrm4_state.c: xfrm4_state_fini
- remove the following unneeded EXPORT_SYMBOL's:
- ip_output.c: ip_finish_output
- ip_output.c: sysctl_ip_default_ttl
- fib_frontend.c: ip_dev_find
- inetpeer.c: inet_peer_idlock
- ip_options.c: ip_options_compile
- ip_options.c: ip_options_undo
- net/core/request_sock.c: sysctl_max_syn_backlog
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ip_output.c')
-rw-r--r-- | net/ipv4/ip_output.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c index 766564cb4207..c934f5316c3b 100644 --- a/net/ipv4/ip_output.c +++ b/net/ipv4/ip_output.c | |||
@@ -205,7 +205,7 @@ static inline int ip_finish_output2(struct sk_buff *skb) | |||
205 | return -EINVAL; | 205 | return -EINVAL; |
206 | } | 206 | } |
207 | 207 | ||
208 | int ip_finish_output(struct sk_buff *skb) | 208 | static int ip_finish_output(struct sk_buff *skb) |
209 | { | 209 | { |
210 | struct net_device *dev = skb->dst->dev; | 210 | struct net_device *dev = skb->dst->dev; |
211 | 211 | ||
@@ -1328,12 +1328,7 @@ void __init ip_init(void) | |||
1328 | #endif | 1328 | #endif |
1329 | } | 1329 | } |
1330 | 1330 | ||
1331 | EXPORT_SYMBOL(ip_finish_output); | ||
1332 | EXPORT_SYMBOL(ip_fragment); | 1331 | EXPORT_SYMBOL(ip_fragment); |
1333 | EXPORT_SYMBOL(ip_generic_getfrag); | 1332 | EXPORT_SYMBOL(ip_generic_getfrag); |
1334 | EXPORT_SYMBOL(ip_queue_xmit); | 1333 | EXPORT_SYMBOL(ip_queue_xmit); |
1335 | EXPORT_SYMBOL(ip_send_check); | 1334 | EXPORT_SYMBOL(ip_send_check); |
1336 | |||
1337 | #ifdef CONFIG_SYSCTL | ||
1338 | EXPORT_SYMBOL(sysctl_ip_default_ttl); | ||
1339 | #endif | ||