git: faba46892748 - stable/15 - kern/sys_process.c: clean up includes
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 16 Aug 2026 02:46:53 UTC
The branch stable/15 has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=faba4689274867d1427615c07c48277aae3a1f4c
commit faba4689274867d1427615c07c48277aae3a1f4c
Author: Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2026-05-26 01:24:54 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2026-08-16 02:41:28 +0000
kern/sys_process.c: clean up includes
(cherry picked from commit f87f97d4c9b30dde1cdb3d72dfd699aed9c307e1)
---
sys/kern/sys_process.c | 19 +++++++++----------
1 file changed, 9 insertions(+), 10 deletions(-)
diff --git a/sys/kern/sys_process.c b/sys/kern/sys_process.c
index a365f833b2af..ccbc0b18ce70 100644
--- a/sys/kern/sys_process.c
+++ b/sys/kern/sys_process.c
@@ -31,29 +31,28 @@
* SUCH DAMAGE.
*/
-#include <sys/param.h>
#include <sys/systm.h>
+#include <sys/caprights.h>
+#include <sys/filedesc.h>
#include <sys/imgact.h>
#include <sys/ktr.h>
#include <sys/limits.h>
#include <sys/lock.h>
+#include <sys/malloc.h>
#include <sys/mman.h>
#include <sys/mutex.h>
+#include <sys/priv.h>
+#include <sys/proc.h>
+#include <sys/ptrace.h>
#include <sys/reg.h>
+#include <sys/rwlock.h>
+#include <sys/signalvar.h>
#include <sys/sleepqueue.h>
+#include <sys/sx.h>
#include <sys/syscallsubr.h>
#include <sys/sysent.h>
#include <sys/sysproto.h>
-#include <sys/priv.h>
-#include <sys/proc.h>
#include <sys/vnode.h>
-#include <sys/ptrace.h>
-#include <sys/rwlock.h>
-#include <sys/sx.h>
-#include <sys/malloc.h>
-#include <sys/signalvar.h>
-#include <sys/caprights.h>
-#include <sys/filedesc.h>
#include <security/audit/audit.h>