aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2025-10-08 15:48:17 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2025-10-09 22:46:40 +0000
commit035f1971ade4396d6f5d5b48f353030f559a0a5f (patch)
treec0b76054f7b51d0e008304c8cf3074be2d08a130
parentde36d0dbaeaf05e9bf949fdf22b560c34b2c0d74 (diff)
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
-rw-r--r--sys/fs/nullfs/null.h4
1 files 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 */