svn commit: r359663 - stable/12/sys/kern

Konstantin Belousov kib at FreeBSD.org
Mon Apr 6 18:45:05 UTC 2020


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>


More information about the svn-src-stable-12 mailing list