Date: Thu, 11 Dec 2008 16:09:31 +0000 (UTC) From: "Bjoern A. Zeeb" <bz@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r185935 - head/sys/kern Message-ID: <200812111609.mBBG9VC2069489@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200812111609.mBBG9VC2069489>