From owner-svn-src-projects@FreeBSD.ORG  Wed Sep 30 19:19:53 2009
Return-Path: <owner-svn-src-projects@FreeBSD.ORG>
Delivered-To: svn-src-projects@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 86833106566B;
	Wed, 30 Sep 2009 19:19:53 +0000 (UTC)
	(envelope-from lstewart@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 7737B8FC1E;
	Wed, 30 Sep 2009 19:19:53 +0000 (UTC)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n8UJJriA023750;
	Wed, 30 Sep 2009 19:19:53 GMT
	(envelope-from lstewart@svn.freebsd.org)
Received: (from lstewart@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n8UJJrvk023748;
	Wed, 30 Sep 2009 19:19:53 GMT
	(envelope-from lstewart@svn.freebsd.org)
Message-Id: <200909301919.n8UJJrvk023748@svn.freebsd.org>
From: Lawrence Stewart <lstewart@FreeBSD.org>
Date: Wed, 30 Sep 2009 19:19:53 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-projects@freebsd.org
X-SVN-Group: projects
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r197651 - projects/tcp_ffcaia2008_8.x/sys/kern
X-BeenThere: svn-src-projects@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the src &quot; projects&quot;
	tree" <svn-src-projects.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/svn-src-projects>, 
	<mailto:svn-src-projects-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-src-projects>
List-Post: <mailto:svn-src-projects@freebsd.org>
List-Help: <mailto:svn-src-projects-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/svn-src-projects>, 
	<mailto:svn-src-projects-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 30 Sep 2009 19:19:53 -0000

Author: lstewart
Date: Wed Sep 30 19:19:53 2009
New Revision: 197651
URL: http://svn.freebsd.org/changeset/base/197651

Log:
  Unsort the systm.h include back to the top of the list under param.h where it
  belongs. It only worked in alphabetical order by luck and defines things other
  header files may use in the future.
  
  Sponsored by:	FreeBSD Foundation
  Submitted by:	bde@

Modified:
  projects/tcp_ffcaia2008_8.x/sys/kern/kern_alq.c

Modified: projects/tcp_ffcaia2008_8.x/sys/kern/kern_alq.c
==============================================================================
--- projects/tcp_ffcaia2008_8.x/sys/kern/kern_alq.c	Wed Sep 30 18:50:50 2009	(r197650)
+++ projects/tcp_ffcaia2008_8.x/sys/kern/kern_alq.c	Wed Sep 30 19:19:53 2009	(r197651)
@@ -36,6 +36,7 @@ __FBSDID("$FreeBSD$");
 #include "opt_mac.h"
 
 #include <sys/param.h>
+#include <sys/systm.h>
 #include <sys/alq.h>
 #include <sys/eventhandler.h>
 #include <sys/fcntl.h>
@@ -46,7 +47,6 @@ __FBSDID("$FreeBSD$");
 #include <sys/mutex.h>
 #include <sys/namei.h>
 #include <sys/proc.h>
-#include <sys/systm.h>
 #include <sys/unistd.h>
 #include <sys/vnode.h>