git: 877eea429ba5 - main - kern_linker.c: sort includes
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 22 Feb 2022 00:17:17 UTC
The branch main has been updated by mhorne: URL: https://cgit.FreeBSD.org/src/commit/?id=877eea429ba5bbe7d28aca26d31fe15e8e14f8e2 commit 877eea429ba5bbe7d28aca26d31fe15e8e14f8e2 Author: Mitchell Horne <mhorne@FreeBSD.org> AuthorDate: 2022-02-20 16:59:57 +0000 Commit: Mitchell Horne <mhorne@FreeBSD.org> CommitDate: 2022-02-22 00:15:51 +0000 kern_linker.c: sort includes This is preferred by style(9). Do this ahead of adding another include. Reviewed by: imp, kevans MFC after: 3 days Sponsored by: NetApp, Inc. Sponsored by: Klara, Inc. Differential Revision: https://reviews.freebsd.org/D30185 --- sys/kern/kern_linker.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/sys/kern/kern_linker.c b/sys/kern/kern_linker.c index 2e4c95f16c8f..e5efe2302c11 100644 --- a/sys/kern/kern_linker.c +++ b/sys/kern/kern_linker.c @@ -34,27 +34,27 @@ __FBSDID("$FreeBSD$"); #include "opt_hwpmc_hooks.h" #include <sys/param.h> -#include <sys/kernel.h> #include <sys/systm.h> -#include <sys/malloc.h> -#include <sys/sysproto.h> -#include <sys/sysent.h> -#include <sys/priv.h> -#include <sys/proc.h> -#include <sys/lock.h> -#include <sys/mutex.h> -#include <sys/sx.h> -#include <sys/module.h> -#include <sys/mount.h> -#include <sys/linker.h> #include <sys/eventhandler.h> #include <sys/fcntl.h> #include <sys/jail.h> +#include <sys/kernel.h> #include <sys/libkern.h> +#include <sys/linker.h> +#include <sys/lock.h> +#include <sys/malloc.h> +#include <sys/module.h> +#include <sys/mount.h> +#include <sys/mutex.h> #include <sys/namei.h> -#include <sys/vnode.h> +#include <sys/priv.h> +#include <sys/proc.h> +#include <sys/sx.h> #include <sys/syscallsubr.h> #include <sys/sysctl.h> +#include <sys/sysent.h> +#include <sys/sysproto.h> +#include <sys/vnode.h> #ifdef DDB #include <ddb/ddb.h>