git: 374799f2b7c3 - main - linux: sort sys headers in linux_emul_md.c
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 16 Aug 2026 22:31:04 UTC
The branch main has been updated by dteske:
URL: https://cgit.FreeBSD.org/src/commit/?id=374799f2b7c3ea1f2df8afd1eff880c2334c16c5
commit 374799f2b7c3ea1f2df8afd1eff880c2334c16c5
Author: Devin Teske <dteske@FreeBSD.org>
AuthorDate: 2026-08-16 22:28:49 +0000
Commit: Devin Teske <dteske@FreeBSD.org>
CommitDate: 2026-08-16 22:28:49 +0000
linux: sort sys headers in linux_emul_md.c
style(9): sys/param.h, then sys/systm.h, then the remaining kernel
headers alphabetically. imgact.h belongs before proc.h.
Reported by: jhibbits
MFC after: 1 month
Reviewed by: jhibbits
Differential Revision: https://reviews.freebsd.org/D58884
---
sys/arm64/linux/linux_emul_md.c | 2 +-
sys/i386/linux/linux_emul_md.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys/arm64/linux/linux_emul_md.c b/sys/arm64/linux/linux_emul_md.c
index e55d3b712056..53bcf88e4075 100644
--- a/sys/arm64/linux/linux_emul_md.c
+++ b/sys/arm64/linux/linux_emul_md.c
@@ -6,8 +6,8 @@
#include <sys/param.h>
#include <sys/systm.h>
-#include <sys/proc.h>
#include <sys/imgact.h>
+#include <sys/proc.h>
#include <compat/linux/linux_emul.h>
#include <compat/linux/linux_mmap.h>
diff --git a/sys/i386/linux/linux_emul_md.c b/sys/i386/linux/linux_emul_md.c
index e55d3b712056..53bcf88e4075 100644
--- a/sys/i386/linux/linux_emul_md.c
+++ b/sys/i386/linux/linux_emul_md.c
@@ -6,8 +6,8 @@
#include <sys/param.h>
#include <sys/systm.h>
-#include <sys/proc.h>
#include <sys/imgact.h>
+#include <sys/proc.h>
#include <compat/linux/linux_emul.h>
#include <compat/linux/linux_mmap.h>