svn commit: r215706 - head/sys/compat/linux

Dimitry Andric dim at FreeBSD.org
Mon Nov 22 20:23:18 UTC 2010


Author: dim
Date: Mon Nov 22 20:23:18 2010
New Revision: 215706
URL: http://svn.freebsd.org/changeset/base/215706

Log:
  Fix linux kernel module breakage introduced in r215675, by including
  <sys/sysent.h>.
  
  Noticed by:	many
  Pointy hat to:	netchild

Modified:
  head/sys/compat/linux/linux_emul.c

Modified: head/sys/compat/linux/linux_emul.c
==============================================================================
--- head/sys/compat/linux/linux_emul.c	Mon Nov 22 20:18:46 2010	(r215705)
+++ head/sys/compat/linux/linux_emul.c	Mon Nov 22 20:23:18 2010	(r215706)
@@ -41,6 +41,7 @@ __FBSDID("$FreeBSD$");
 #include <sys/sx.h>
 #include <sys/proc.h>
 #include <sys/syscallsubr.h>
+#include <sys/sysent.h>
 #include <sys/sysproto.h>
 #include <sys/unistd.h>
 


More information about the svn-src-all mailing list