Date: Mon, 22 Nov 2010 20:23:18 +0000 (UTC) From: Dimitry Andric <dim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r215706 - head/sys/compat/linux Message-ID: <201011222023.oAMKNI4c004542@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201011222023.oAMKNI4c004542>