Include arp.h to restore the sysctl net.inet.ip.dad_count.

Fixes PR kern/49883 thanks to HITOSHI Osada.
This commit is contained in:
roy 2015-10-13 09:46:42 +00:00
parent b61ebcc9c7
commit c47c3c3042
1 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_input.c,v 1.324 2015/08/24 22:21:26 pooka Exp $ */
/* $NetBSD: ip_input.c,v 1.325 2015/10/13 09:46:42 roy Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@ -91,7 +91,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_input.c,v 1.324 2015/08/24 22:21:26 pooka Exp $");
__KERNEL_RCSID(0, "$NetBSD: ip_input.c,v 1.325 2015/10/13 09:46:42 roy Exp $");
#ifdef _KERNEL_OPT
#include "opt_inet.h"
@ -103,6 +103,8 @@ __KERNEL_RCSID(0, "$NetBSD: ip_input.c,v 1.324 2015/08/24 22:21:26 pooka Exp $")
#include "opt_inet_csum.h"
#endif
#include "arp.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/cpu.h>