Module Name: src
Committed By: dsl
Date: Wed Feb 19 21:45:01 UTC 2014
Modified Files:
src/sys/compat/linux32/arch/amd64: linux32_machdep.c
Log Message:
Explicitly include x86/fpu.h instead of relying in x86/frame.h including it.
To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 \
src/sys/compat/linux32/arch/amd64/linux32_machdep.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/compat/linux32/arch/amd64/linux32_machdep.c
diff -u src/sys/compat/linux32/arch/amd64/linux32_machdep.c:1.35 src/sys/compat/linux32/arch/amd64/linux32_machdep.c:1.36
--- src/sys/compat/linux32/arch/amd64/linux32_machdep.c:1.35 Sat Feb 15 10:11:15 2014
+++ src/sys/compat/linux32/arch/amd64/linux32_machdep.c Wed Feb 19 21:45:01 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: linux32_machdep.c,v 1.35 2014/02/15 10:11:15 dsl Exp $ */
+/* $NetBSD: linux32_machdep.c,v 1.36 2014/02/19 21:45:01 dsl Exp $ */
/*-
* Copyright (c) 2006 Emmanuel Dreyfus, all rights reserved.
@@ -31,7 +31,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux32_machdep.c,v 1.35 2014/02/15 10:11:15 dsl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux32_machdep.c,v 1.36 2014/02/19 21:45:01 dsl Exp $");
#include <sys/param.h>
#include <sys/proc.h>
@@ -41,6 +41,8 @@ __KERNEL_RCSID(0, "$NetBSD: linux32_mach
#include <machine/cpufunc.h>
#include <machine/netbsd32_machdep.h>
+#include <x86/fpu.h>
+
#include <compat/netbsd32/netbsd32.h>
#include <compat/netbsd32/netbsd32_syscallargs.h>