diff options
| author | Konstantin Belousov <kib@FreeBSD.org> | 2025-10-08 15:48:17 +0000 |
|---|---|---|
| committer | Konstantin Belousov <kib@FreeBSD.org> | 2025-10-09 22:46:40 +0000 |
| commit | 035f1971ade4396d6f5d5b48f353030f559a0a5f (patch) | |
| tree | c0b76054f7b51d0e008304c8cf3074be2d08a130 | |
| parent | de36d0dbaeaf05e9bf949fdf22b560c34b2c0d74 (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.h | 4 |
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 */ |
