Date: Mon, 6 Apr 2020 18:45:05 +0000 (UTC) From: Konstantin Belousov <kib@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org Subject: svn commit: r359663 - stable/12/sys/kern Message-ID: <202004061845.036Ij57b044342@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kib Date: Mon Apr 6 18:45:05 2020 New Revision: 359663 URL: https://svnweb.freebsd.org/changeset/base/359663 Log: MFC r359463: kern_sendfile.c style: order headers alphabetically. Modified: stable/12/sys/kern/kern_sendfile.c Directory Properties: stable/12/ (props changed) Modified: stable/12/sys/kern/kern_sendfile.c ============================================================================== --- stable/12/sys/kern/kern_sendfile.c Mon Apr 6 18:42:01 2020 (r359662) +++ stable/12/sys/kern/kern_sendfile.c Mon Apr 6 18:45:05 2020 (r359663) @@ -36,12 +36,11 @@ __FBSDID("$FreeBSD$"); #include <sys/kernel.h> #include <sys/lock.h> #include <sys/mutex.h> -#include <sys/sysproto.h> #include <sys/malloc.h> -#include <sys/proc.h> #include <sys/mman.h> #include <sys/mount.h> #include <sys/mbuf.h> +#include <sys/proc.h> #include <sys/protosw.h> #include <sys/rwlock.h> #include <sys/sf_buf.h> @@ -49,6 +48,7 @@ __FBSDID("$FreeBSD$"); #include <sys/socketvar.h> #include <sys/syscallsubr.h> #include <sys/sysctl.h> +#include <sys/sysproto.h> #include <sys/vnode.h> #include <net/vnet.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004061845.036Ij57b044342>