diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2007-10-08 17:26:34 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 16:54:55 -0700 |
commit | cdf7e668d4327a33e11be04c4cb9bcc604eaaa0f (patch) | |
tree | 3ffa05d642ec702b73eb568894024b4787849faa /net/xfrm/xfrm_output.c | |
parent | 436a0a402203d5a47d2edf7e4dde6c08a7257983 (diff) | |
download | op-kernel-dev-cdf7e668d4327a33e11be04c4cb9bcc604eaaa0f.zip op-kernel-dev-cdf7e668d4327a33e11be04c4cb9bcc604eaaa0f.tar.gz |
[IPSEC]: Unexport xfrm_replay_notify
Now that the only callers of xfrm_replay_notify are in xfrm, we can remove
the export.
This patch also removes xfrm_aevent_doreplay since it's now called in just
one spot.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/xfrm/xfrm_output.c')
-rw-r--r-- | net/xfrm/xfrm_output.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/xfrm/xfrm_output.c b/net/xfrm/xfrm_output.c index 20e789d..40d75ec 100644 --- a/net/xfrm/xfrm_output.c +++ b/net/xfrm/xfrm_output.c @@ -60,7 +60,8 @@ int xfrm_output(struct sk_buff *skb) if (x->type->flags & XFRM_TYPE_REPLAY_PROT) { XFRM_SKB_CB(skb)->seq = ++x->replay.oseq; - xfrm_aevent_doreplay(x); + if (xfrm_aevent_is_on()) + xfrm_replay_notify(x, XFRM_REPLAY_UPDATE); } err = x->mode->output(x, skb); |