diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2007-11-19 21:50:17 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 17:53:54 -0500 |
commit | 1bf06cd2e338fd6fc29169d30eaf0df982338285 (patch) | |
tree | 351bf1c8e5063fdfb8c820470972169d398729fe /net/ipv6/xfrm6_input.c | |
parent | 60d5fcfb19d8a958fc563e52240cd05ec23f36c9 (diff) |
[IPSEC]: Add async resume support on input
This patch adds support for async resumptions on input. To do so, the
transform would return -EINPROGRESS and subsequently invoke the
function xfrm_input_resume to resume processing.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/xfrm6_input.c')
-rw-r--r-- | net/ipv6/xfrm6_input.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/ipv6/xfrm6_input.c b/net/ipv6/xfrm6_input.c index 5c006c845943..e317d0855468 100644 --- a/net/ipv6/xfrm6_input.c +++ b/net/ipv6/xfrm6_input.c | |||
@@ -41,6 +41,9 @@ int xfrm6_transport_finish(struct sk_buff *skb, int async) | |||
41 | ip6_rcv_finish); | 41 | ip6_rcv_finish); |
42 | return -1; | 42 | return -1; |
43 | #else | 43 | #else |
44 | if (async) | ||
45 | return ip6_rcv_finish(skb); | ||
46 | |||
44 | return 1; | 47 | return 1; |
45 | #endif | 48 | #endif |
46 | } | 49 | } |