From d3c131a1c4f853a4dba62f600de22a00bcefb17a Mon Sep 17 00:00:00 2001 From: Mateusz Guzik Date: Sun, 16 Aug 2020 18:27:42 +0000 Subject: [PATCH] vfs: restore sorted order of unused nameidata flags --- sys/sys/namei.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/namei.h b/sys/sys/namei.h index 9e32853146f..479fbace1bd 100644 --- a/sys/sys/namei.h +++ b/sys/sys/namei.h @@ -160,8 +160,8 @@ int cache_fplookup(struct nameidata *ndp, enum cache_fpl_status *status, #define AUDITVNODE1 0x00040000 /* audit the looked up vnode information */ #define AUDITVNODE2 0x00080000 /* audit the looked up vnode information */ #define NOCAPCHECK 0x00100000 /* do not perform capability checks */ -/* UNUSED 0x00400000 */ /* UNUSED 0x00200000 */ +/* UNUSED 0x00400000 */ /* UNUSED 0x00800000 */ #define HASBUF 0x01000000 /* has allocated pathname buffer */ #define NOEXECCHECK 0x02000000 /* do not perform exec check on dir */