Date: Mon, 15 Jul 2013 15:40:58 +0000 (UTC) From: "Andrey V. Elsukov" <ae@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r253367 - in head/sys: i386/i386 mips/mips powerpc/powerpc sparc64/sparc64 Message-ID: <201307151540.r6FFewZc049719@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ae Date: Mon Jul 15 15:40:57 2013 New Revision: 253367 URL: http://svnweb.freebsd.org/changeset/base/253367 Log: Include sys/systm.h after sys/param.h. Suggested by: pluknet Modified: head/sys/i386/i386/uio_machdep.c head/sys/mips/mips/uio_machdep.c head/sys/powerpc/powerpc/uio_machdep.c head/sys/sparc64/sparc64/uio_machdep.c Modified: head/sys/i386/i386/uio_machdep.c ============================================================================== --- head/sys/i386/i386/uio_machdep.c Mon Jul 15 15:38:16 2013 (r253366) +++ head/sys/i386/i386/uio_machdep.c Mon Jul 15 15:40:57 2013 (r253367) @@ -39,13 +39,13 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> +#include <sys/systm.h> #include <sys/kernel.h> #include <sys/lock.h> #include <sys/mutex.h> #include <sys/proc.h> #include <sys/sched.h> #include <sys/sf_buf.h> -#include <sys/systm.h> #include <sys/uio.h> #include <vm/vm.h> Modified: head/sys/mips/mips/uio_machdep.c ============================================================================== --- head/sys/mips/mips/uio_machdep.c Mon Jul 15 15:38:16 2013 (r253366) +++ head/sys/mips/mips/uio_machdep.c Mon Jul 15 15:40:57 2013 (r253367) @@ -39,12 +39,12 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> +#include <sys/systm.h> #include <sys/kernel.h> #include <sys/lock.h> #include <sys/mutex.h> #include <sys/proc.h> #include <sys/sf_buf.h> -#include <sys/systm.h> #include <sys/uio.h> #include <vm/vm.h> Modified: head/sys/powerpc/powerpc/uio_machdep.c ============================================================================== --- head/sys/powerpc/powerpc/uio_machdep.c Mon Jul 15 15:38:16 2013 (r253366) +++ head/sys/powerpc/powerpc/uio_machdep.c Mon Jul 15 15:40:57 2013 (r253367) @@ -39,11 +39,11 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> +#include <sys/systm.h> #include <sys/kernel.h> #include <sys/lock.h> #include <sys/mutex.h> #include <sys/proc.h> -#include <sys/systm.h> #include <sys/uio.h> #include <sys/sf_buf.h> Modified: head/sys/sparc64/sparc64/uio_machdep.c ============================================================================== --- head/sys/sparc64/sparc64/uio_machdep.c Mon Jul 15 15:38:16 2013 (r253366) +++ head/sys/sparc64/sparc64/uio_machdep.c Mon Jul 15 15:40:57 2013 (r253367) @@ -39,12 +39,12 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> +#include <sys/systm.h> #include <sys/kernel.h> #include <sys/lock.h> #include <sys/mutex.h> #include <sys/proc.h> #include <sys/sf_buf.h> -#include <sys/systm.h> #include <sys/uio.h> #include <vm/vm.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307151540.r6FFewZc049719>