Date: Mon, 28 Oct 2013 07:29:16 +0000 (UTC) From: Gleb Smirnoff <glebius@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r257241 - in head/sys: compat/ndis dev/ath dev/bwi dev/cxgb dev/cxgb/ulp/tom dev/cxgbe dev/cxgbe/common dev/cxgbe/tom dev/hyperv/netvsc dev/if_ndis dev/malo dev/oce dev/qlxgb dev/qlxgbe... Message-ID: <201310280729.r9S7TG9d044368@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: glebius Date: Mon Oct 28 07:29:16 2013 New Revision: 257241 URL: http://svnweb.freebsd.org/changeset/base/257241 Log: Include necessary headers that now are available due to pollution via if_var.h. Sponsored by: Netflix Sponsored by: Nginx, Inc. Modified: head/sys/compat/ndis/subr_usbd.c head/sys/dev/ath/if_ath_pci.c head/sys/dev/bwi/if_bwi_pci.c head/sys/dev/cxgb/cxgb_sge.c head/sys/dev/cxgb/ulp/tom/cxgb_cpl_io.c head/sys/dev/cxgb/ulp/tom/cxgb_listen.c head/sys/dev/cxgbe/common/t4_hw.c head/sys/dev/cxgbe/t4_l2t.c head/sys/dev/cxgbe/t4_sge.c head/sys/dev/cxgbe/t4_tracer.c head/sys/dev/cxgbe/tom/t4_tom.c head/sys/dev/hyperv/netvsc/hv_net_vsc.c head/sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c head/sys/dev/if_ndis/if_ndis_pccard.c head/sys/dev/if_ndis/if_ndis_pci.c head/sys/dev/malo/if_malo_pci.c head/sys/dev/malo/if_malohal.c head/sys/dev/oce/oce_if.h head/sys/dev/qlxgb/qla_os.h head/sys/dev/qlxgbe/ql_os.h head/sys/dev/qlxge/qls_os.h head/sys/dev/siba/siba_bwn.c head/sys/dev/siba/siba_core.c head/sys/dev/usb/net/if_ipheth.c head/sys/dev/usb/net/if_smsc.c head/sys/dev/virtio/network/if_vtnet.c head/sys/dev/vmware/vmxnet3/if_vmx.c head/sys/net/ieee8023ad_lacp.c head/sys/net/if_bridge.c head/sys/net/if_clone.c head/sys/net/if_vlan.c head/sys/net80211/ieee80211_amrr.c head/sys/net80211/ieee80211_dfs.c head/sys/net80211/ieee80211_radiotap.c head/sys/net80211/ieee80211_regdomain.c head/sys/net80211/ieee80211_rssadapt.c head/sys/netgraph/ng_eiface.c head/sys/netgraph/ng_ether.c head/sys/netgraph/ng_fec.c head/sys/netinet/in.c head/sys/netinet/ip_divert.c head/sys/netinet/siftr.c head/sys/netinet/toecore.c head/sys/netinet6/in6.c head/sys/netpfil/ipfw/ip_fw_dynamic.c Modified: head/sys/compat/ndis/subr_usbd.c ============================================================================== --- head/sys/compat/ndis/subr_usbd.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/compat/ndis/subr_usbd.c Mon Oct 28 07:29:16 2013 (r257241) @@ -56,6 +56,7 @@ __FBSDID("$FreeBSD$"); #include <net/if.h> #include <net/if_var.h> #include <net/if_media.h> +#include <net/ethernet.h> #include <net80211/ieee80211_var.h> #include <net80211/ieee80211_ioctl.h> Modified: head/sys/dev/ath/if_ath_pci.c ============================================================================== --- head/sys/dev/ath/if_ath_pci.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/ath/if_ath_pci.c Mon Oct 28 07:29:16 2013 (r257241) @@ -37,6 +37,7 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/systm.h> +#include <sys/malloc.h> #include <sys/module.h> #include <sys/kernel.h> #include <sys/lock.h> @@ -53,6 +54,7 @@ __FBSDID("$FreeBSD$"); #include <net/if.h> #include <net/if_media.h> #include <net/if_arp.h> +#include <net/ethernet.h> #include <net80211/ieee80211_var.h> Modified: head/sys/dev/bwi/if_bwi_pci.c ============================================================================== --- head/sys/dev/bwi/if_bwi_pci.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/bwi/if_bwi_pci.c Mon Oct 28 07:29:16 2013 (r257241) @@ -56,6 +56,7 @@ __FBSDID("$FreeBSD$"); #include <net/if_var.h> #include <net/if_media.h> #include <net/if_arp.h> +#include <net/ethernet.h> #include <net80211/ieee80211_var.h> #include <net80211/ieee80211_radiotap.h> Modified: head/sys/dev/cxgb/cxgb_sge.c ============================================================================== --- head/sys/dev/cxgb/cxgb_sge.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/cxgb/cxgb_sge.c Mon Oct 28 07:29:16 2013 (r257241) @@ -56,9 +56,10 @@ __FBSDID("$FreeBSD$"); #include <sys/socket.h> #include <sys/sglist.h> +#include <net/if.h> +#include <net/if_var.h> #include <net/bpf.h> #include <net/ethernet.h> -#include <net/if.h> #include <net/if_vlan_var.h> #include <netinet/in_systm.h> Modified: head/sys/dev/cxgb/ulp/tom/cxgb_cpl_io.c ============================================================================== --- head/sys/dev/cxgb/ulp/tom/cxgb_cpl_io.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/cxgb/ulp/tom/cxgb_cpl_io.c Mon Oct 28 07:29:16 2013 (r257241) @@ -52,6 +52,7 @@ __FBSDID("$FreeBSD$"); #include <sys/taskqueue.h> #include <net/if.h> +#include <net/if_var.h> #include <net/ethernet.h> #include <net/route.h> Modified: head/sys/dev/cxgb/ulp/tom/cxgb_listen.c ============================================================================== --- head/sys/dev/cxgb/ulp/tom/cxgb_listen.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/cxgb/ulp/tom/cxgb_listen.c Mon Oct 28 07:29:16 2013 (r257241) @@ -36,6 +36,7 @@ __FBSDID("$FreeBSD$"); #include <sys/socketvar.h> #include <sys/sysctl.h> #include <net/if.h> +#include <net/if_var.h> #include <net/route.h> #include <netinet/in.h> #include <netinet/ip.h> Modified: head/sys/dev/cxgbe/common/t4_hw.c ============================================================================== --- head/sys/dev/cxgbe/common/t4_hw.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/cxgbe/common/t4_hw.c Mon Oct 28 07:29:16 2013 (r257241) @@ -29,6 +29,9 @@ __FBSDID("$FreeBSD$"); #include "opt_inet.h" +#include <sys/param.h> +#include <sys/eventhandler.h> + #include "common.h" #include "t4_regs.h" #include "t4_regs_values.h" Modified: head/sys/dev/cxgbe/t4_l2t.c ============================================================================== --- head/sys/dev/cxgbe/t4_l2t.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/cxgbe/t4_l2t.c Mon Oct 28 07:29:16 2013 (r257241) @@ -30,6 +30,7 @@ __FBSDID("$FreeBSD$"); #include "opt_inet6.h" #include <sys/param.h> +#include <sys/eventhandler.h> #include <sys/systm.h> #include <sys/kernel.h> #include <sys/module.h> Modified: head/sys/dev/cxgbe/t4_sge.c ============================================================================== --- head/sys/dev/cxgbe/t4_sge.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/cxgbe/t4_sge.c Mon Oct 28 07:29:16 2013 (r257241) @@ -32,6 +32,7 @@ __FBSDID("$FreeBSD$"); #include "opt_inet6.h" #include <sys/types.h> +#include <sys/eventhandler.h> #include <sys/mbuf.h> #include <sys/socket.h> #include <sys/kernel.h> Modified: head/sys/dev/cxgbe/t4_tracer.c ============================================================================== --- head/sys/dev/cxgbe/t4_tracer.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/cxgbe/t4_tracer.c Mon Oct 28 07:29:16 2013 (r257241) @@ -32,6 +32,7 @@ __FBSDID("$FreeBSD$"); #include "opt_inet6.h" #include <sys/param.h> +#include <sys/eventhandler.h> #include <sys/lock.h> #include <sys/types.h> #include <sys/mbuf.h> Modified: head/sys/dev/cxgbe/tom/t4_tom.c ============================================================================== --- head/sys/dev/cxgbe/tom/t4_tom.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/cxgbe/tom/t4_tom.c Mon Oct 28 07:29:16 2013 (r257241) @@ -43,6 +43,7 @@ __FBSDID("$FreeBSD$"); #include <sys/socketvar.h> #include <sys/taskqueue.h> #include <net/if.h> +#include <net/if_var.h> #include <netinet/in.h> #include <netinet/in_pcb.h> #include <netinet/in_var.h> Modified: head/sys/dev/hyperv/netvsc/hv_net_vsc.c ============================================================================== --- head/sys/dev/hyperv/netvsc/hv_net_vsc.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/hyperv/netvsc/hv_net_vsc.c Mon Oct 28 07:29:16 2013 (r257241) @@ -24,6 +24,8 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * $FreeBSD$ */ /** @@ -37,6 +39,7 @@ #include <sys/socket.h> #include <sys/lock.h> #include <net/if.h> +#include <net/if_var.h> #include <net/if_arp.h> #include <machine/bus.h> #include <machine/atomic.h> Modified: head/sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c ============================================================================== --- head/sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c Mon Oct 28 07:29:16 2013 (r257241) @@ -75,9 +75,9 @@ __FBSDID("$FreeBSD$"); #include <net/bpf.h> +#include <net/if_var.h> #include <net/if_types.h> #include <net/if_vlan_var.h> -#include <net/if.h> #include <netinet/in_systm.h> #include <netinet/in.h> Modified: head/sys/dev/if_ndis/if_ndis_pccard.c ============================================================================== --- head/sys/dev/if_ndis/if_ndis_pccard.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/if_ndis/if_ndis_pccard.c Mon Oct 28 07:29:16 2013 (r257241) @@ -46,6 +46,7 @@ __FBSDID("$FreeBSD$"); #include <net/if_var.h> #include <net/if_arp.h> #include <net/if_media.h> +#include <net/ethernet.h> #include <machine/bus.h> #include <machine/resource.h> Modified: head/sys/dev/if_ndis/if_ndis_pci.c ============================================================================== --- head/sys/dev/if_ndis/if_ndis_pci.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/if_ndis/if_ndis_pci.c Mon Oct 28 07:29:16 2013 (r257241) @@ -46,6 +46,7 @@ __FBSDID("$FreeBSD$"); #include <net/if_var.h> #include <net/if_arp.h> #include <net/if_media.h> +#include <net/ethernet.h> #include <machine/bus.h> #include <machine/resource.h> Modified: head/sys/dev/malo/if_malo_pci.c ============================================================================== --- head/sys/dev/malo/if_malo_pci.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/malo/if_malo_pci.c Mon Oct 28 07:29:16 2013 (r257241) @@ -52,6 +52,7 @@ __FBSDID("$FreeBSD$"); #include <net/if.h> #include <net/if_var.h> #include <net/if_media.h> +#include <net/ethernet.h> #include <net80211/ieee80211_var.h> Modified: head/sys/dev/malo/if_malohal.c ============================================================================== --- head/sys/dev/malo/if_malohal.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/malo/if_malohal.c Mon Oct 28 07:29:16 2013 (r257241) @@ -49,6 +49,7 @@ __FBSDID("$FreeBSD$"); #include <net/if_var.h> #include <net/if_dl.h> #include <net/if_media.h> +#include <net/ethernet.h> #include <net80211/ieee80211_var.h> Modified: head/sys/dev/oce/oce_if.h ============================================================================== --- head/sys/dev/oce/oce_if.h Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/oce/oce_if.h Mon Oct 28 07:29:16 2013 (r257241) @@ -40,6 +40,7 @@ #include <sys/param.h> #include <sys/endian.h> +#include <sys/eventhandler.h> #include <sys/module.h> #include <sys/kernel.h> #include <sys/bus.h> Modified: head/sys/dev/qlxgb/qla_os.h ============================================================================== --- head/sys/dev/qlxgb/qla_os.h Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/qlxgb/qla_os.h Mon Oct 28 07:29:16 2013 (r257241) @@ -52,6 +52,7 @@ #endif #include <net/if.h> +#include <net/if_var.h> #include <net/if_arp.h> #include <net/ethernet.h> #include <net/if_dl.h> Modified: head/sys/dev/qlxgbe/ql_os.h ============================================================================== --- head/sys/dev/qlxgbe/ql_os.h Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/qlxgbe/ql_os.h Mon Oct 28 07:29:16 2013 (r257241) @@ -53,6 +53,7 @@ #endif #include <net/if.h> +#include <net/if_var.h> #include <net/if_arp.h> #include <net/ethernet.h> #include <net/if_dl.h> Modified: head/sys/dev/qlxge/qls_os.h ============================================================================== --- head/sys/dev/qlxge/qls_os.h Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/qlxge/qls_os.h Mon Oct 28 07:29:16 2013 (r257241) @@ -53,6 +53,7 @@ #endif #include <net/if.h> +#include <net/if_var.h> #include <net/if_arp.h> #include <net/ethernet.h> #include <net/if_dl.h> Modified: head/sys/dev/siba/siba_bwn.c ============================================================================== --- head/sys/dev/siba/siba_bwn.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/siba/siba_bwn.c Mon Oct 28 07:29:16 2013 (r257241) @@ -36,6 +36,7 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/systm.h> +#include <sys/malloc.h> #include <sys/module.h> #include <sys/kernel.h> #include <sys/lock.h> Modified: head/sys/dev/siba/siba_core.c ============================================================================== --- head/sys/dev/siba/siba_core.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/siba/siba_core.c Mon Oct 28 07:29:16 2013 (r257241) @@ -36,6 +36,7 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/systm.h> +#include <sys/malloc.h> #include <sys/module.h> #include <sys/kernel.h> #include <sys/endian.h> Modified: head/sys/dev/usb/net/if_ipheth.c ============================================================================== --- head/sys/dev/usb/net/if_ipheth.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/usb/net/if_ipheth.c Mon Oct 28 07:29:16 2013 (r257241) @@ -44,6 +44,7 @@ __FBSDID("$FreeBSD$"); #include <sys/lock.h> #include <sys/mutex.h> #include <sys/condvar.h> +#include <sys/socket.h> #include <sys/sysctl.h> #include <sys/sx.h> #include <sys/unistd.h> @@ -51,6 +52,9 @@ __FBSDID("$FreeBSD$"); #include <sys/malloc.h> #include <sys/priv.h> +#include <net/if.h> +#include <net/if_var.h> + #include <dev/usb/usb.h> #include <dev/usb/usbdi.h> #include <dev/usb/usbdi_util.h> Modified: head/sys/dev/usb/net/if_smsc.c ============================================================================== --- head/sys/dev/usb/net/if_smsc.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/usb/net/if_smsc.c Mon Oct 28 07:29:16 2013 (r257241) @@ -74,6 +74,7 @@ __FBSDID("$FreeBSD$"); #include <sys/lock.h> #include <sys/mutex.h> #include <sys/condvar.h> +#include <sys/socket.h> #include <sys/sysctl.h> #include <sys/sx.h> #include <sys/unistd.h> @@ -82,6 +83,9 @@ __FBSDID("$FreeBSD$"); #include <sys/priv.h> #include <sys/random.h> +#include <net/if.h> +#include <net/if_var.h> + #include "opt_platform.h" #ifdef FDT Modified: head/sys/dev/virtio/network/if_vtnet.c ============================================================================== --- head/sys/dev/virtio/network/if_vtnet.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/virtio/network/if_vtnet.c Mon Oct 28 07:29:16 2013 (r257241) @@ -30,6 +30,7 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> +#include <sys/eventhandler.h> #include <sys/systm.h> #include <sys/kernel.h> #include <sys/sockio.h> Modified: head/sys/dev/vmware/vmxnet3/if_vmx.c ============================================================================== --- head/sys/dev/vmware/vmxnet3/if_vmx.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/dev/vmware/vmxnet3/if_vmx.c Mon Oct 28 07:29:16 2013 (r257241) @@ -24,6 +24,7 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/systm.h> +#include <sys/eventhandler.h> #include <sys/kernel.h> #include <sys/endian.h> #include <sys/sockio.h> Modified: head/sys/net/ieee8023ad_lacp.c ============================================================================== --- head/sys/net/ieee8023ad_lacp.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/net/ieee8023ad_lacp.c Mon Oct 28 07:29:16 2013 (r257241) @@ -32,6 +32,7 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/callout.h> +#include <sys/eventhandler.h> #include <sys/mbuf.h> #include <sys/systm.h> #include <sys/malloc.h> Modified: head/sys/net/if_bridge.c ============================================================================== --- head/sys/net/if_bridge.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/net/if_bridge.c Mon Oct 28 07:29:16 2013 (r257241) @@ -81,6 +81,7 @@ __FBSDID("$FreeBSD$"); #include "opt_inet6.h" #include <sys/param.h> +#include <sys/eventhandler.h> #include <sys/mbuf.h> #include <sys/malloc.h> #include <sys/protosw.h> Modified: head/sys/net/if_clone.c ============================================================================== --- head/sys/net/if_clone.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/net/if_clone.c Mon Oct 28 07:29:16 2013 (r257241) @@ -32,6 +32,7 @@ */ #include <sys/param.h> +#include <sys/eventhandler.h> #include <sys/malloc.h> #include <sys/limits.h> #include <sys/lock.h> Modified: head/sys/net/if_vlan.c ============================================================================== --- head/sys/net/if_vlan.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/net/if_vlan.c Mon Oct 28 07:29:16 2013 (r257241) @@ -45,6 +45,7 @@ __FBSDID("$FreeBSD$"); #include "opt_vlan.h" #include <sys/param.h> +#include <sys/eventhandler.h> #include <sys/kernel.h> #include <sys/lock.h> #include <sys/malloc.h> Modified: head/sys/net80211/ieee80211_amrr.c ============================================================================== --- head/sys/net80211/ieee80211_amrr.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/net80211/ieee80211_amrr.c Mon Oct 28 07:29:16 2013 (r257241) @@ -40,6 +40,7 @@ __FBSDID("$FreeBSD$"); #include <net/if.h> #include <net/if_var.h> #include <net/if_media.h> +#include <net/ethernet.h> #ifdef INET #include <netinet/in.h> Modified: head/sys/net80211/ieee80211_dfs.c ============================================================================== --- head/sys/net80211/ieee80211_dfs.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/net80211/ieee80211_dfs.c Mon Oct 28 07:29:16 2013 (r257241) @@ -50,6 +50,7 @@ __FBSDID("$FreeBSD$"); #include <net/if.h> #include <net/if_var.h> #include <net/if_media.h> +#include <net/ethernet.h> #include <net80211/ieee80211_var.h> Modified: head/sys/net80211/ieee80211_radiotap.c ============================================================================== --- head/sys/net80211/ieee80211_radiotap.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/net80211/ieee80211_radiotap.c Mon Oct 28 07:29:16 2013 (r257241) @@ -45,6 +45,7 @@ __FBSDID("$FreeBSD$"); #include <net/if_var.h> #include <net/if_llc.h> #include <net/if_media.h> +#include <net/ethernet.h> #include <net80211/ieee80211_var.h> Modified: head/sys/net80211/ieee80211_regdomain.c ============================================================================== --- head/sys/net80211/ieee80211_regdomain.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/net80211/ieee80211_regdomain.c Mon Oct 28 07:29:16 2013 (r257241) @@ -41,6 +41,7 @@ __FBSDID("$FreeBSD$"); #include <net/if.h> #include <net/if_var.h> #include <net/if_media.h> +#include <net/ethernet.h> #include <net80211/ieee80211_var.h> #include <net80211/ieee80211_regdomain.h> Modified: head/sys/net80211/ieee80211_rssadapt.c ============================================================================== --- head/sys/net80211/ieee80211_rssadapt.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/net80211/ieee80211_rssadapt.c Mon Oct 28 07:29:16 2013 (r257241) @@ -33,13 +33,17 @@ #include "opt_wlan.h" #include <sys/param.h> +#include <sys/systm.h> #include <sys/kernel.h> +#include <sys/malloc.h> #include <sys/module.h> #include <sys/socket.h> #include <sys/sysctl.h> #include <net/if.h> +#include <net/if_var.h> #include <net/if_media.h> +#include <net/ethernet.h> #include <net80211/ieee80211_var.h> #include <net80211/ieee80211_rssadapt.h> Modified: head/sys/netgraph/ng_eiface.c ============================================================================== --- head/sys/netgraph/ng_eiface.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/netgraph/ng_eiface.c Mon Oct 28 07:29:16 2013 (r257241) @@ -29,6 +29,7 @@ */ #include <sys/param.h> +#include <sys/eventhandler.h> #include <sys/systm.h> #include <sys/errno.h> #include <sys/kernel.h> Modified: head/sys/netgraph/ng_ether.c ============================================================================== --- head/sys/netgraph/ng_ether.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/netgraph/ng_ether.c Mon Oct 28 07:29:16 2013 (r257241) @@ -47,6 +47,7 @@ */ #include <sys/param.h> +#include <sys/eventhandler.h> #include <sys/systm.h> #include <sys/kernel.h> #include <sys/malloc.h> Modified: head/sys/netgraph/ng_fec.c ============================================================================== --- head/sys/netgraph/ng_fec.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/netgraph/ng_fec.c Mon Oct 28 07:29:16 2013 (r257241) @@ -89,6 +89,7 @@ */ #include <sys/param.h> +#include <sys/eventhandler.h> #include <sys/systm.h> #include <sys/errno.h> #include <sys/kernel.h> Modified: head/sys/netinet/in.c ============================================================================== --- head/sys/netinet/in.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/netinet/in.c Mon Oct 28 07:29:16 2013 (r257241) @@ -36,6 +36,7 @@ __FBSDID("$FreeBSD$"); #include "opt_mpath.h" #include <sys/param.h> +#include <sys/eventhandler.h> #include <sys/systm.h> #include <sys/sockio.h> #include <sys/malloc.h> Modified: head/sys/netinet/ip_divert.c ============================================================================== --- head/sys/netinet/ip_divert.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/netinet/ip_divert.c Mon Oct 28 07:29:16 2013 (r257241) @@ -38,6 +38,7 @@ __FBSDID("$FreeBSD$"); #endif #include <sys/param.h> +#include <sys/eventhandler.h> #include <sys/kernel.h> #include <sys/lock.h> #include <sys/malloc.h> Modified: head/sys/netinet/siftr.c ============================================================================== --- head/sys/netinet/siftr.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/netinet/siftr.c Mon Oct 28 07:29:16 2013 (r257241) @@ -64,6 +64,7 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/alq.h> #include <sys/errno.h> +#include <sys/eventhandler.h> #include <sys/hash.h> #include <sys/kernel.h> #include <sys/kthread.h> @@ -81,6 +82,7 @@ __FBSDID("$FreeBSD$"); #include <sys/unistd.h> #include <net/if.h> +#include <net/if_var.h> #include <net/pfil.h> #include <netinet/in.h> Modified: head/sys/netinet/toecore.c ============================================================================== --- head/sys/netinet/toecore.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/netinet/toecore.c Mon Oct 28 07:29:16 2013 (r257241) @@ -43,6 +43,7 @@ __FBSDID("$FreeBSD$"); #include <net/ethernet.h> #include <net/if.h> +#include <net/if_var.h> #include <net/if_types.h> #include <net/if_vlan_var.h> #include <net/if_llatbl.h> Modified: head/sys/netinet6/in6.c ============================================================================== --- head/sys/netinet6/in6.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/netinet6/in6.c Mon Oct 28 07:29:16 2013 (r257241) @@ -68,6 +68,7 @@ __FBSDID("$FreeBSD$"); #include "opt_inet6.h" #include <sys/param.h> +#include <sys/eventhandler.h> #include <sys/errno.h> #include <sys/jail.h> #include <sys/malloc.h> Modified: head/sys/netpfil/ipfw/ip_fw_dynamic.c ============================================================================== --- head/sys/netpfil/ipfw/ip_fw_dynamic.c Mon Oct 28 07:18:24 2013 (r257240) +++ head/sys/netpfil/ipfw/ip_fw_dynamic.c Mon Oct 28 07:29:16 2013 (r257241) @@ -45,6 +45,7 @@ __FBSDID("$FreeBSD$"); #include <sys/malloc.h> #include <sys/mbuf.h> #include <sys/kernel.h> +#include <sys/ktr.h> #include <sys/lock.h> #include <sys/socket.h> #include <sys/sysctl.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310280729.r9S7TG9d044368>