git: 374799f2b7c3 - main - linux: sort sys headers in linux_emul_md.c
Devin Teske <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.src |
|---|---|
| Message-ID | <6a823a28.24697.7e2be89f__22636.1788738117$1786919485$gmane$org@gitrepo.freebsd.org> |
The branch main has been updated by dteske: URL: https://cgit.FreeBSD.org/src/commit/?id=374799f2b7c3ea1f2df8afd1eff880c2334c16c5 commit 374799f2b7c3ea1f2df8afd1eff880c2334c16c5 Author: Devin Teske <[email protected]> AuthorDate: 2026-08-16 22:28:49 +0000 Commit: Devin Teske <[email protected]> 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>