svn commit: r185935 - head/sys/kern

Bjoern A. Zeeb bz at FreeBSD.org
Thu Dec 11 08:09:32 PST 2008


Author: bz
Date: Thu Dec 11 16:09:31 2008
New Revision: 185935
URL: http://svn.freebsd.org/changeset/base/185935

Log:
  Order #includes - also to reduce diffs with vimage branches in p4.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/kern/kern_poll.c

Modified: head/sys/kern/kern_poll.c
==============================================================================
--- head/sys/kern/kern_poll.c	Thu Dec 11 16:05:07 2008	(r185934)
+++ head/sys/kern/kern_poll.c	Thu Dec 11 16:09:31 2008	(r185935)
@@ -33,20 +33,19 @@ __FBSDID("$FreeBSD$");
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/kernel.h>
+#include <sys/kthread.h>
+#include <sys/proc.h>
+#include <sys/resourcevar.h>
 #include <sys/socket.h>			/* needed by net/if.h		*/
 #include <sys/sockio.h>
 #include <sys/sysctl.h>
 #include <sys/syslog.h>
+#include <sys/vimage.h>
 
 #include <net/if.h>			/* for IFF_* flags		*/
 #include <net/netisr.h>			/* for NETISR_POLL		*/
 #include <net/vnet.h>
 
-#include <sys/proc.h>
-#include <sys/resourcevar.h>
-#include <sys/kthread.h>
-#include <sys/vimage.h>
-
 static void netisr_poll(void);		/* the two netisr handlers      */
 static void netisr_pollmore(void);
 static int poll_switch(SYSCTL_HANDLER_ARGS);


More information about the svn-src-all mailing list