diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2008-01-11 22:15:08 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 17:53:47 -0500 |
commit | ef76bc23ef2acf20c8f7f841a542d8ab74c827c6 (patch) | |
tree | 11ae8004f4c25ac91339f13a86fdd9f170faeb2e /include | |
parent | c439cb2e4b13cf1cb2abcd006b906315a3381323 (diff) |
[IPV6]: Add ip6_local_out
Most callers of the LOCAL_OUT chain will set the IP packet length
before doing so. They also share the same output function dst_output.
This patch creates a new function called ip6_local_out which does all
of that and converts the appropriate users over to it.
Apart from removing duplicate code, it will also help in merging the
IPsec output path.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/ipv6.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/net/ipv6.h b/include/net/ipv6.h index ae328b680ff2..e90f9625cb1b 100644 --- a/include/net/ipv6.h +++ b/include/net/ipv6.h | |||
@@ -509,6 +509,9 @@ extern int ip6_forward(struct sk_buff *skb); | |||
509 | extern int ip6_input(struct sk_buff *skb); | 509 | extern int ip6_input(struct sk_buff *skb); |
510 | extern int ip6_mc_input(struct sk_buff *skb); | 510 | extern int ip6_mc_input(struct sk_buff *skb); |
511 | 511 | ||
512 | extern int __ip6_local_out(struct sk_buff *skb); | ||
513 | extern int ip6_local_out(struct sk_buff *skb); | ||
514 | |||
512 | /* | 515 | /* |
513 | * Extension header (options) processing | 516 | * Extension header (options) processing |
514 | */ | 517 | */ |