svn commit: r348022 - in head/sys: dev/netmap netinet/netdump

Conrad Meyer cem at FreeBSD.org
Tue May 21 00:04:21 UTC 2019


Author: cem
Date: Tue May 21 00:04:19 2019
New Revision: 348022
URL: https://svnweb.freebsd.org/changeset/base/348022

Log:
  Add two missing eventhandler.h headers
  
  These are obviously missing from the .c files, but don't show up in any
  tinderbox configuration (due to latent header pollution of some kind).  It
  seems some configurations don't have this pollution, and the includes are
  obviously missing, so go ahead and add them.
  
  Reported by:	Peter Jeremy <peter AT rulingia.com>
  X-MFC-With:	r347984

Modified:
  head/sys/dev/netmap/netmap_freebsd.c
  head/sys/netinet/netdump/netdump_client.c

Modified: head/sys/dev/netmap/netmap_freebsd.c
==============================================================================
--- head/sys/dev/netmap/netmap_freebsd.c	Mon May 20 22:37:42 2019	(r348021)
+++ head/sys/dev/netmap/netmap_freebsd.c	Tue May 21 00:04:19 2019	(r348022)
@@ -32,6 +32,7 @@
 #include <sys/param.h>
 #include <sys/module.h>
 #include <sys/errno.h>
+#include <sys/eventhandler.h>
 #include <sys/jail.h>
 #include <sys/poll.h>  /* POLLIN, POLLOUT */
 #include <sys/kernel.h> /* types used in module initialization */

Modified: head/sys/netinet/netdump/netdump_client.c
==============================================================================
--- head/sys/netinet/netdump/netdump_client.c	Mon May 20 22:37:42 2019	(r348021)
+++ head/sys/netinet/netdump/netdump_client.c	Tue May 21 00:04:19 2019	(r348022)
@@ -38,6 +38,7 @@ __FBSDID("$FreeBSD$");
 #include <sys/conf.h>
 #include <sys/disk.h>
 #include <sys/endian.h>
+#include <sys/eventhandler.h>
 #include <sys/jail.h>
 #include <sys/kernel.h>
 #include <sys/kerneldump.h>


More information about the svn-src-head mailing list