git: ea3d86ea5774 - stable/14 - MAC/do: Sort header inclusions

From: Olivier Certner <olce_at_FreeBSD.org>
Date: Thu, 03 Apr 2025 19:31:51 UTC
The branch stable/14 has been updated by olce:

URL: https://cgit.FreeBSD.org/src/commit/?id=ea3d86ea5774450581f58e4cbdb45530f120b05a

commit ea3d86ea5774450581f58e4cbdb45530f120b05a
Author:     Olivier Certner <olce@FreeBSD.org>
AuthorDate: 2024-11-25 14:46:41 +0000
Commit:     Olivier Certner <olce@FreeBSD.org>
CommitDate: 2025-04-03 19:30:55 +0000

    MAC/do: Sort header inclusions
    
    In accordance with style(9).
    
    Reviewed by:    bapt, emaste
    Approved by:    markj (mentor)
    Sponsored by:   The FreeBSD Foundation
    Differential Revision:  https://reviews.freebsd.org/D47771
    
    (cherry picked from commit f0600c41e754f32b388af804fb542b0f0ea89dee)
---
 sys/security/mac_do/mac_do.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/security/mac_do/mac_do.c b/sys/security/mac_do/mac_do.c
index 1aad37f549bc..e72ffed2ff04 100644
--- a/sys/security/mac_do/mac_do.c
+++ b/sys/security/mac_do/mac_do.c
@@ -5,10 +5,11 @@
  */
 
 #include <sys/param.h>
-#include <sys/malloc.h>
+#include <sys/systm.h>
 #include <sys/jail.h>
 #include <sys/kernel.h>
 #include <sys/lock.h>
+#include <sys/malloc.h>
 #include <sys/module.h>
 #include <sys/mount.h>
 #include <sys/mutex.h>
@@ -17,7 +18,6 @@
 #include <sys/socket.h>
 #include <sys/sx.h>
 #include <sys/sysctl.h>
-#include <sys/systm.h>
 #include <sys/ucred.h>
 #include <sys/vnode.h>