svn commit: r228430 - head/sys/kern

Andriy Gapon avg at FreeBSD.org
Mon Dec 12 07:46:10 UTC 2011


Author: avg
Date: Mon Dec 12 07:46:10 2011
New Revision: 228430
URL: http://svn.freebsd.org/changeset/base/228430

Log:
  kern_racct: move sys/systm.h inclusion to its proper place
  
  This should fix the build failure introduced with r228424.
  Also remove duplicate inclusion of sys/param.h.
  
  Pointyhat to:	avg
  MFC after:	1 week

Modified:
  head/sys/kern/kern_racct.c

Modified: head/sys/kern/kern_racct.c
==============================================================================
--- head/sys/kern/kern_racct.c	Sun Dec 11 23:19:57 2011	(r228429)
+++ head/sys/kern/kern_racct.c	Mon Dec 12 07:46:10 2011	(r228430)
@@ -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


More information about the svn-src-head mailing list