The branch stable/13 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=8475c8db9962fc0facb5b6e14d293010b55fb9b2
commit 8475c8db9962fc0facb5b6e14d293010b55fb9b2 Author: Konstantin Belousov <[email protected]> AuthorDate: 2021-03-11 07:02:16 +0000 Commit: Konstantin Belousov <[email protected]> CommitDate: 2021-08-14 10:21:58 +0000 ffs_extern.h: Add comments for ffs_vgetf() flags (cherry picked from commit a285d3edacf602e555a918119d787d94f342fe90) --- sys/ufs/ffs/ffs_extern.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/sys/ufs/ffs/ffs_extern.h b/sys/ufs/ffs/ffs_extern.h index c0ceeee09e89..2ea828861b42 100644 --- a/sys/ufs/ffs/ffs_extern.h +++ b/sys/ufs/ffs/ffs_extern.h @@ -124,10 +124,12 @@ int ffs_breadz(struct ufsmount *, struct vnode *, daddr_t, daddr_t, int, /* * Flags to ffs_vgetf */ -#define FFSV_FORCEINSMQ 0x0001 -#define FFSV_REPLACE 0x0002 -#define FFSV_REPLACE_DOOMED 0x0004 -#define FFSV_FORCEINODEDEP 0x0008 +#define FFSV_FORCEINSMQ 0x0001 /* Force insertion into mount list */ +#define FFSV_REPLACE 0x0002 /* Replace existing vnode */ +#define FFSV_REPLACE_DOOMED 0x0004 /* Replace existing vnode if it is + doomed */ +#define FFSV_FORCEINODEDEP 0x0008 /* Force allocation of inodedep, ignore + MNT_SOFTDEP */ /* * Flags to ffs_reload _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all To unsubscribe, send any mail to "[email protected]"
