diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2007-10-08 20:26:34 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:54:55 -0400 |
commit | cdf7e668d4327a33e11be04c4cb9bcc604eaaa0f (patch) | |
tree | 3ffa05d642ec702b73eb568894024b4787849faa /net | |
parent | 436a0a402203d5a47d2edf7e4dde6c08a7257983 (diff) |
[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')
-rw-r--r-- | net/xfrm/xfrm_output.c | 3 | ||||
-rw-r--r-- | net/xfrm/xfrm_state.c | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net/xfrm/xfrm_output.c b/net/xfrm/xfrm_output.c index 20e789d8c63e..40d75eccddda 100644 --- a/net/xfrm/xfrm_output.c +++ b/net/xfrm/xfrm_output.c | |||
@@ -60,7 +60,8 @@ int xfrm_output(struct sk_buff *skb) | |||
60 | 60 | ||
61 | if (x->type->flags & XFRM_TYPE_REPLAY_PROT) { | 61 | if (x->type->flags & XFRM_TYPE_REPLAY_PROT) { |
62 | XFRM_SKB_CB(skb)->seq = ++x->replay.oseq; | 62 | XFRM_SKB_CB(skb)->seq = ++x->replay.oseq; |
63 | xfrm_aevent_doreplay(x); | 63 | if (xfrm_aevent_is_on()) |
64 | xfrm_replay_notify(x, XFRM_REPLAY_UPDATE); | ||
64 | } | 65 | } |
65 | 66 | ||
66 | err = x->mode->output(x, skb); | 67 | err = x->mode->output(x, skb); |
diff --git a/net/xfrm/xfrm_state.c b/net/xfrm/xfrm_state.c index 0ecec34d265a..a00745abaad3 100644 --- a/net/xfrm/xfrm_state.c +++ b/net/xfrm/xfrm_state.c | |||
@@ -1397,7 +1397,6 @@ void xfrm_replay_notify(struct xfrm_state *x, int event) | |||
1397 | !mod_timer(&x->rtimer, jiffies + x->replay_maxage)) | 1397 | !mod_timer(&x->rtimer, jiffies + x->replay_maxage)) |
1398 | x->xflags &= ~XFRM_TIME_DEFER; | 1398 | x->xflags &= ~XFRM_TIME_DEFER; |
1399 | } | 1399 | } |
1400 | EXPORT_SYMBOL(xfrm_replay_notify); | ||
1401 | 1400 | ||
1402 | static void xfrm_replay_timer_handler(unsigned long data) | 1401 | static void xfrm_replay_timer_handler(unsigned long data) |
1403 | { | 1402 | { |