Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 6 Oct 2016 17:54:34 +0000 (UTC)
From:      Sean Bruno <sbruno@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r306772 - head/sys/dev/netmap
Message-ID:  <201610061754.u96HsYND099397@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610061754.u96HsYND099397>