diff options
Diffstat (limited to 'net/xfrm')
-rw-r--r-- | net/xfrm/xfrm_input.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net/xfrm/xfrm_input.c b/net/xfrm/xfrm_input.c index 1b250f33ad5b..039e7019c48a 100644 --- a/net/xfrm/xfrm_input.c +++ b/net/xfrm/xfrm_input.c | |||
@@ -186,8 +186,11 @@ int xfrm_input(struct sk_buff *skb, int nexthdr, __be32 spi, int encap_type) | |||
186 | resume: | 186 | resume: |
187 | spin_lock(&x->lock); | 187 | spin_lock(&x->lock); |
188 | if (nexthdr <= 0) { | 188 | if (nexthdr <= 0) { |
189 | if (nexthdr == -EBADMSG) | 189 | if (nexthdr == -EBADMSG) { |
190 | xfrm_audit_state_icvfail(x, skb, | ||
191 | x->type->proto); | ||
190 | x->stats.integrity_failed++; | 192 | x->stats.integrity_failed++; |
193 | } | ||
191 | XFRM_INC_STATS(LINUX_MIB_XFRMINSTATEPROTOERROR); | 194 | XFRM_INC_STATS(LINUX_MIB_XFRMINSTATEPROTOERROR); |
192 | goto drop_unlock; | 195 | goto drop_unlock; |
193 | } | 196 | } |