do proper statistics counting for outbound packets, fixes PR kern/30182

by Gilles Roy
This commit is contained in:
drochner 2011-02-18 16:12:26 +00:00
parent a301ba8826
commit e790ebf12c
1 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: ipsec_output.c,v 1.31 2011/02/10 20:42:30 drochner Exp $ */
/* $NetBSD: ipsec_output.c,v 1.32 2011/02/18 16:12:26 drochner Exp $ */
/*-
* Copyright (c) 2002, 2003 Sam Leffler, Errno Consulting
@ -29,7 +29,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ipsec_output.c,v 1.31 2011/02/10 20:42:30 drochner Exp $");
__KERNEL_RCSID(0, "$NetBSD: ipsec_output.c,v 1.32 2011/02/18 16:12:26 drochner Exp $");
/*
* IPsec output processing.
@ -263,6 +263,8 @@ ipsec_process_done(struct mbuf *m, struct ipsecrequest *isr)
goto bad;
}
key_sa_recordxfer(sav, m);
/*
* If there's another (bundled) SA to apply, do so.
* Note that this puts a burden on the kernel stack size.