diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2007-11-13 21:43:11 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 14:53:48 -0800 |
commit | 862b82c6f960cc61274d370aa78ce1112f92a83e (patch) | |
tree | 51e252e1525dd7d02a695d428890a4c37fae2442 /net/ipv4/route.c | |
parent | ef76bc23ef2acf20c8f7f841a542d8ab74c827c6 (diff) | |
download | kernel_goldelico_gta04-862b82c6f960cc61274d370aa78ce1112f92a83e.zip kernel_goldelico_gta04-862b82c6f960cc61274d370aa78ce1112f92a83e.tar.gz kernel_goldelico_gta04-862b82c6f960cc61274d370aa78ce1112f92a83e.tar.bz2 |
[IPSEC]: Merge most of the output path
As part of the work on asynchrnous cryptographic operations, we need
to be able to resume from the spot where they occur. As such, it
helps if we isolate them to one spot.
This patch moves most of the remaining family-specific processing into
the common output code.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/route.c')
-rw-r--r-- | net/ipv4/route.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv4/route.c b/net/ipv4/route.c index 137b8eb..94ef788 100644 --- a/net/ipv4/route.c +++ b/net/ipv4/route.c @@ -166,6 +166,7 @@ static struct dst_ops ipv4_dst_ops = { .negative_advice = ipv4_negative_advice, .link_failure = ipv4_link_failure, .update_pmtu = ip_rt_update_pmtu, + .local_out = ip_local_out, .entry_size = sizeof(struct rtable), }; |