aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2006-01-07 16:23:39 -0500
committerDavid S. Miller <davem@davemloft.net>2006-01-07 16:23:39 -0500
commit97dc627fb3471664c72d0933790a90ba3f91e131 (patch)
tree89ca7c0856da17268c6f1c0a3d45fb07e4058741
parentf53b61d8c385140fe7f09e0c9187ae813ee9f330 (diff)
[IPV4]: make ip_fragment() static
Since there's no longer any external user of ip_fragment() we can make it static. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--include/net/ip.h1
-rw-r--r--net/ipv4/ip_output.c5
2 files changed, 3 insertions, 3 deletions
diff --git a/include/net/ip.h b/include/net/ip.h
index a494d04e5dea..8de0697b364c 100644
--- a/include/net/ip.h
+++ b/include/net/ip.h
@@ -94,7 +94,6 @@ extern int ip_local_deliver(struct sk_buff *skb);
94extern int ip_mr_input(struct sk_buff *skb); 94extern int ip_mr_input(struct sk_buff *skb);
95extern int ip_output(struct sk_buff *skb); 95extern int ip_output(struct sk_buff *skb);
96extern int ip_mc_output(struct sk_buff *skb); 96extern int ip_mc_output(struct sk_buff *skb);
97extern int ip_fragment(struct sk_buff *skb, int (*out)(struct sk_buff*));
98extern int ip_do_nat(struct sk_buff *skb); 97extern int ip_do_nat(struct sk_buff *skb);
99extern void ip_send_check(struct iphdr *ip); 98extern void ip_send_check(struct iphdr *ip);
100extern int ip_queue_xmit(struct sk_buff *skb, int ipfragok); 99extern int ip_queue_xmit(struct sk_buff *skb, int ipfragok);
diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c
index 59fdac3a099a..c2169b47ddfd 100644
--- a/net/ipv4/ip_output.c
+++ b/net/ipv4/ip_output.c
@@ -85,6 +85,8 @@
85 85
86int sysctl_ip_default_ttl = IPDEFTTL; 86int sysctl_ip_default_ttl = IPDEFTTL;
87 87
88static int ip_fragment(struct sk_buff *skb, int (*output)(struct sk_buff*));
89
88/* Generate a checksum for an outgoing IP datagram. */ 90/* Generate a checksum for an outgoing IP datagram. */
89__inline__ void ip_send_check(struct iphdr *iph) 91__inline__ void ip_send_check(struct iphdr *iph)
90{ 92{
@@ -414,7 +416,7 @@ static void ip_copy_metadata(struct sk_buff *to, struct sk_buff *from)
414 * single device frame, and queue such a frame for sending. 416 * single device frame, and queue such a frame for sending.
415 */ 417 */
416 418
417int ip_fragment(struct sk_buff *skb, int (*output)(struct sk_buff*)) 419static int ip_fragment(struct sk_buff *skb, int (*output)(struct sk_buff*))
418{ 420{
419 struct iphdr *iph; 421 struct iphdr *iph;
420 int raw = 0; 422 int raw = 0;
@@ -1396,7 +1398,6 @@ void __init ip_init(void)
1396#endif 1398#endif
1397} 1399}
1398 1400
1399EXPORT_SYMBOL(ip_fragment);
1400EXPORT_SYMBOL(ip_generic_getfrag); 1401EXPORT_SYMBOL(ip_generic_getfrag);
1401EXPORT_SYMBOL(ip_queue_xmit); 1402EXPORT_SYMBOL(ip_queue_xmit);
1402EXPORT_SYMBOL(ip_send_check); 1403EXPORT_SYMBOL(ip_send_check);