svn commit: r230167 - in stable/9/sys: kern security/mac
Andriy Gapon
avg at FreeBSD.org
Sun Jan 15 21:58:52 UTC 2012
Author: avg
Date: Sun Jan 15 21:58:51 2012
New Revision: 230167
URL: http://svn.freebsd.org/changeset/base/230167
Log:
MFC r228430,228433: put sys/systm.h at its proper place or add it if missing
Modified:
stable/9/sys/kern/kern_racct.c
stable/9/sys/kern/kern_sx.c
stable/9/sys/kern/vfs_cache.c
stable/9/sys/security/mac/mac_framework.c
stable/9/sys/security/mac/mac_priv.c
Directory Properties:
stable/9/sys/ (props changed)
stable/9/sys/amd64/include/xen/ (props changed)
stable/9/sys/boot/ (props changed)
stable/9/sys/boot/i386/efi/ (props changed)
stable/9/sys/boot/ia64/efi/ (props changed)
stable/9/sys/boot/ia64/ski/ (props changed)
stable/9/sys/boot/powerpc/boot1.chrp/ (props changed)
stable/9/sys/boot/powerpc/ofw/ (props changed)
stable/9/sys/cddl/contrib/opensolaris/ (props changed)
stable/9/sys/conf/ (props changed)
stable/9/sys/contrib/dev/acpica/ (props changed)
stable/9/sys/contrib/octeon-sdk/ (props changed)
stable/9/sys/contrib/pf/ (props changed)
stable/9/sys/contrib/x86emu/ (props changed)
Modified: stable/9/sys/kern/kern_racct.c
==============================================================================
--- stable/9/sys/kern/kern_racct.c Sun Jan 15 21:52:45 2012 (r230166)
+++ stable/9/sys/kern/kern_racct.c Sun Jan 15 21:58:51 2012 (r230167)
@@ -35,8 +35,8 @@ __FBSDID("$FreeBSD$");
#include "opt_kdtrace.h"
#include <sys/param.h>
+#include <sys/systm.h>
#include <sys/eventhandler.h>
-#include <sys/param.h>
#include <sys/jail.h>
#include <sys/kernel.h>
#include <sys/kthread.h>
@@ -53,7 +53,6 @@ __FBSDID("$FreeBSD$");
#include <sys/sx.h>
#include <sys/sysent.h>
#include <sys/sysproto.h>
-#include <sys/systm.h>
#include <sys/umtx.h>
#ifdef RCTL
Modified: stable/9/sys/kern/kern_sx.c
==============================================================================
--- stable/9/sys/kern/kern_sx.c Sun Jan 15 21:52:45 2012 (r230166)
+++ stable/9/sys/kern/kern_sx.c Sun Jan 15 21:58:51 2012 (r230167)
@@ -44,6 +44,7 @@
__FBSDID("$FreeBSD$");
#include <sys/param.h>
+#include <sys/systm.h>
#include <sys/ktr.h>
#include <sys/lock.h>
#include <sys/mutex.h>
@@ -51,7 +52,6 @@ __FBSDID("$FreeBSD$");
#include <sys/sleepqueue.h>
#include <sys/sx.h>
#include <sys/sysctl.h>
-#include <sys/systm.h>
#if defined(SMP) && !defined(NO_ADAPTIVE_SX)
#include <machine/cpu.h>
Modified: stable/9/sys/kern/vfs_cache.c
==============================================================================
--- stable/9/sys/kern/vfs_cache.c Sun Jan 15 21:52:45 2012 (r230166)
+++ stable/9/sys/kern/vfs_cache.c Sun Jan 15 21:58:51 2012 (r230167)
@@ -39,6 +39,7 @@ __FBSDID("$FreeBSD$");
#include "opt_ktrace.h"
#include <sys/param.h>
+#include <sys/systm.h>
#include <sys/filedesc.h>
#include <sys/fnv_hash.h>
#include <sys/kernel.h>
@@ -52,7 +53,6 @@ __FBSDID("$FreeBSD$");
#include <sys/syscallsubr.h>
#include <sys/sysctl.h>
#include <sys/sysproto.h>
-#include <sys/systm.h>
#include <sys/vnode.h>
#ifdef KTRACE
#include <sys/ktrace.h>
Modified: stable/9/sys/security/mac/mac_framework.c
==============================================================================
--- stable/9/sys/security/mac/mac_framework.c Sun Jan 15 21:52:45 2012 (r230166)
+++ stable/9/sys/security/mac/mac_framework.c Sun Jan 15 21:58:51 2012 (r230167)
@@ -73,6 +73,7 @@
__FBSDID("$FreeBSD$");
#include <sys/param.h>
+#include <sys/systm.h>
#include <sys/condvar.h>
#include <sys/kernel.h>
#include <sys/lock.h>
@@ -81,7 +82,6 @@ __FBSDID("$FreeBSD$");
#include <sys/rmlock.h>
#include <sys/sdt.h>
#include <sys/sx.h>
-#include <sys/systm.h>
#include <sys/sysctl.h>
#include <security/mac/mac_framework.h>
Modified: stable/9/sys/security/mac/mac_priv.c
==============================================================================
--- stable/9/sys/security/mac/mac_priv.c Sun Jan 15 21:52:45 2012 (r230166)
+++ stable/9/sys/security/mac/mac_priv.c Sun Jan 15 21:58:51 2012 (r230167)
@@ -42,6 +42,7 @@ __FBSDID("$FreeBSD$");
#include "opt_mac.h"
#include <sys/param.h>
+#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/priv.h>
#include <sys/sdt.h>
More information about the svn-src-stable-9
mailing list