Date: Thu, 5 Jan 2017 01:28:08 +0000 (UTC) From: Mark Johnston <markj@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r311345 - head/sys/kern Message-ID: <201701050128.v051S80C000997@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: markj Date: Thu Jan 5 01:28:08 2017 New Revision: 311345 URL: https://svnweb.freebsd.org/changeset/base/311345 Log: Sort includes in kern_exec.c. MFC after: 1 week Modified: head/sys/kern/kern_exec.c Modified: head/sys/kern/kern_exec.c ============================================================================== --- head/sys/kern/kern_exec.c Thu Jan 5 01:27:53 2017 (r311344) +++ head/sys/kern/kern_exec.c Thu Jan 5 01:28:08 2017 (r311345) @@ -33,39 +33,39 @@ __FBSDID("$FreeBSD$"); #include "opt_vm.h" #include <sys/param.h> -#include <sys/capsicum.h> #include <sys/systm.h> -#include <sys/eventhandler.h> -#include <sys/lock.h> -#include <sys/mutex.h> -#include <sys/sysproto.h> -#include <sys/signalvar.h> -#include <sys/kernel.h> -#include <sys/mount.h> -#include <sys/filedesc.h> -#include <sys/fcntl.h> #include <sys/acct.h> +#include <sys/capsicum.h> +#include <sys/eventhandler.h> #include <sys/exec.h> +#include <sys/fcntl.h> +#include <sys/filedesc.h> #include <sys/imgact.h> #include <sys/imgact_elf.h> -#include <sys/wait.h> +#include <sys/kernel.h> +#include <sys/lock.h> #include <sys/malloc.h> +#include <sys/mount.h> +#include <sys/mutex.h> +#include <sys/namei.h> +#include <sys/pioctl.h> #include <sys/priv.h> #include <sys/proc.h> -#include <sys/pioctl.h> #include <sys/ptrace.h> -#include <sys/namei.h> #include <sys/resourcevar.h> #include <sys/rwlock.h> #include <sys/sched.h> #include <sys/sdt.h> #include <sys/sf_buf.h> -#include <sys/syscallsubr.h> -#include <sys/sysent.h> #include <sys/shm.h> +#include <sys/signalvar.h> +#include <sys/stat.h> +#include <sys/syscallsubr.h> #include <sys/sysctl.h> +#include <sys/sysent.h> +#include <sys/sysproto.h> #include <sys/vnode.h> -#include <sys/stat.h> +#include <sys/wait.h> #ifdef KTRACE #include <sys/ktrace.h> #endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701050128.v051S80C000997>