Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Feb 2021 20:56:30 GMT
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 889cf2bf73a0 - releng/13.0 - ffs_vnops.c: Move opt_*.h includes to the top.
Message-ID:  <202102192056.11JKuUMI072508@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch releng/13.0 has been updated by kib:

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

commit 889cf2bf73a0cb52d0ff06fe9f307d13a8f87d44
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2021-01-28 18:30:35 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2021-02-19 20:56:13 +0000

    ffs_vnops.c: Move opt_*.h includes to the top.
    
    Approved by:    re (gjb)
    
    (cherry picked from commit 0281f88e5dbc8d6f819bf3f22dd11239ff5374ea)
---
 sys/ufs/ffs/ffs_vnops.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/sys/ufs/ffs/ffs_vnops.c b/sys/ufs/ffs/ffs_vnops.c
index 6ca98a84869d..68985d8715f3 100644
--- a/sys/ufs/ffs/ffs_vnops.c
+++ b/sys/ufs/ffs/ffs_vnops.c
@@ -66,6 +66,9 @@
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
 
+#include "opt_directio.h"
+#include "opt_ffs.h"
+
 #include <sys/param.h>
 #include <sys/bio.h>
 #include <sys/systm.h>
@@ -99,8 +102,6 @@ __FBSDID("$FreeBSD$");
 
 #include <ufs/ffs/fs.h>
 #include <ufs/ffs/ffs_extern.h>
-#include "opt_directio.h"
-#include "opt_ffs.h"
 
 #define	ALIGNED_TO(ptr, s)	\
 	(((uintptr_t)(ptr) & (_Alignof(s) - 1)) == 0)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202102192056.11JKuUMI072508>