svn commit: r306772 - head/sys/dev/netmap

Sean Bruno sbruno at FreeBSD.org
Thu Oct 6 17:54:35 UTC 2016


Author: sbruno
Date: Thu Oct  6 17:54:34 2016
New Revision: 306772
URL: https://svnweb.freebsd.org/changeset/base/306772

Log:
  Move netmap selinfo.h in to sensible location.
  
  netmap_kern.h currently requires all drivers including it to include
  selinfo.h.
  
  Submitted by:	mmacy at nextbsd.org
  Reviewed by:	gnn
  MFC after:	2 weeks
  Differential Revision:	https://reviews.freebsd.org/D5334

Modified:
  head/sys/dev/netmap/netmap_kern.h

Modified: head/sys/dev/netmap/netmap_kern.h
==============================================================================
--- head/sys/dev/netmap/netmap_kern.h	Thu Oct  6 17:35:50 2016	(r306771)
+++ head/sys/dev/netmap/netmap_kern.h	Thu Oct  6 17:54:34 2016	(r306772)
@@ -62,6 +62,7 @@
 #endif
 
 #if defined(__FreeBSD__)
+#include <sys/selinfo.h>
 
 #define likely(x)	__builtin_expect((long)!!(x), 1L)
 #define unlikely(x)	__builtin_expect((long)!!(x), 0L)


More information about the svn-src-head mailing list