diff options
| author | Garrett Wollman <wollman@FreeBSD.org> | 1995-12-19 20:46:15 +0000 |
|---|---|---|
| committer | Garrett Wollman <wollman@FreeBSD.org> | 1995-12-19 20:46:15 +0000 |
| commit | ce29ab3ac663d016872a073449a3bb208a27bc47 (patch) | |
| tree | 88a9020100cb4f32be9406fb9edc1d4fda61551b /sys/netinet/ip_input.c | |
| parent | 637442dc622e192c529b46d7aa2306e1cb97c587 (diff) | |
Notes
Diffstat (limited to 'sys/netinet/ip_input.c')
| -rw-r--r-- | sys/netinet/ip_input.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c index a817ac8a56f2..8eb91a9640ef 100644 --- a/sys/netinet/ip_input.c +++ b/sys/netinet/ip_input.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ip_input.c 8.2 (Berkeley) 1/4/94 - * $Id: ip_input.c,v 1.29 1995/12/06 23:37:34 bde Exp $ + * $Id: ip_input.c,v 1.30 1995/12/14 09:53:41 phk Exp $ */ #include <sys/param.h> @@ -692,11 +692,12 @@ ip_slowtimo() void ip_drain() { - while (ipq.next != &ipq) { ipstat.ips_fragdropped++; ip_freef(ipq.next); } + + in_rtqdrain(); } /* |
