The branch main has been updated by kib:

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

commit 035f1971ade4396d6f5d5b48f353030f559a0a5f
Author:     Konstantin Belousov <[email protected]>
AuthorDate: 2025-10-08 15:48:17 +0000
Commit:     Konstantin Belousov <[email protected]>
CommitDate: 2025-10-09 22:46:40 +0000

    fs/nullfs/null.h: put first definition after headers include
    
    Reviewed by:    markj
    Sponsored by:   The FreeBSD Foundation
    MFC after:      1 week
    Differential revision:  https://reviews.freebsd.org/D52983
---
 sys/fs/nullfs/null.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/fs/nullfs/null.h b/sys/fs/nullfs/null.h
index ad3f7779e108..0db50ef26bf9 100644
--- a/sys/fs/nullfs/null.h
+++ b/sys/fs/nullfs/null.h
@@ -35,11 +35,11 @@
 #ifndef        FS_NULL_H
 #define        FS_NULL_H
 
-#define        NULLM_CACHE     0x0001
-
 #include <sys/ck.h>
 #include <vm/uma.h>
 
+#define        NULLM_CACHE             0x0001
+
 struct null_mount {
        struct mount    *nullm_vfs;
        struct vnode    *nullm_lowerrootvp;     /* Ref to lower root vnode */

Reply via email to