Date: Wed, 2 Apr 2025 21:18:45 GMT From: Rick Macklem <rmacklem@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 6441407b297e - main - vnode.h: Delete VA_NAMEDATTR_TYPE Message-ID: <202504022118.532LIjLI038102@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by rmacklem: URL: https://cgit.FreeBSD.org/src/commit/?id=6441407b297eb4a449b8e66632dd3ba56a412ff1 commit 6441407b297eb4a449b8e66632dd3ba56a412ff1 Author: Rick Macklem <rmacklem@FreeBSD.org> AuthorDate: 2025-04-02 21:17:18 +0000 Commit: Rick Macklem <rmacklem@FreeBSD.org> CommitDate: 2025-04-02 21:17:18 +0000 vnode.h: Delete VA_NAMEDATTR_TYPE Commit 2ec2ba7e232d added a new va_vaflags called VA_NAMEDATTR_TYPE. This is not needed, since a new flag will be committed by D49651 when it is committed. This patch reverts the definition of this flag value. Discussed with: kib --- sys/sys/vnode.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h index e1b30977f4bd..8b4ac2031cf2 100644 --- a/sys/sys/vnode.h +++ b/sys/sys/vnode.h @@ -307,10 +307,9 @@ struct vattr { /* * Flags for va_vaflags. */ -#define VA_UTIMES_NULL 0x01 /* utimes argument was NULL */ -#define VA_EXCLUSIVE 0x02 /* exclusive create request */ -#define VA_SYNC 0x04 /* O_SYNC truncation */ -#define VA_NAMEDATTR_TYPE 0x08 /* vnode is for named attribute */ +#define VA_UTIMES_NULL 0x01 /* utimes argument was NULL */ +#define VA_EXCLUSIVE 0x02 /* exclusive create request */ +#define VA_SYNC 0x04 /* O_SYNC truncation */ /* * Flags for ioflag. (high 16 bits used to ask for read-ahead and
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202504022118.532LIjLI038102>