git: fa3eb3c97005 - main - vfs: indent V_VALID_FLAGS with a tab
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 18 Sep 2022 21:32:45 UTC
The branch main has been updated by mjg:
URL: https://cgit.FreeBSD.org/src/commit/?id=fa3eb3c97005dac9f177f06901f0762e15e40c3b
commit fa3eb3c97005dac9f177f06901f0762e15e40c3b
Author: Mateusz Guzik <mjg@FreeBSD.org>
AuthorDate: 2022-09-18 21:32:25 +0000
Commit: Mateusz Guzik <mjg@FreeBSD.org>
CommitDate: 2022-09-18 21:32:25 +0000
vfs: indent V_VALID_FLAGS with a tab
Requested by: kib
---
sys/sys/vnode.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h
index 4ae3dd22a390..f3170d77e6d4 100644
--- a/sys/sys/vnode.h
+++ b/sys/sys/vnode.h
@@ -432,7 +432,7 @@ extern int vttoif_tab[];
#define V_NOWAIT 0x0002 /* vn_start_write: don't sleep for suspend */
#define V_XSLEEP 0x0004 /* vn_start_write: just return after sleep */
#define V_PCATCH 0x0008 /* vn_start_write: make the sleep interruptible */
-#define V_VALID_FLAGS (V_WAIT | V_NOWAIT | V_XSLEEP | V_PCATCH)
+#define V_VALID_FLAGS (V_WAIT | V_NOWAIT | V_XSLEEP | V_PCATCH)
#define VR_START_WRITE 0x0001 /* vfs_write_resume: start write atomically */
#define VR_NO_SUSPCLR 0x0002 /* vfs_write_resume: do not clear suspension */