Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/sys Regen.
details: https://anonhg.NetBSD.org/src/rev/74fe209b9a6a
branches: trunk
changeset: 379720:74fe209b9a6a
user: dholland <dholland%NetBSD.org@localhost>
date: Wed Jun 16 01:52:39 2021 +0000
description:
Regen.
diffstat:
sys/rump/include/rump/rump_namei.h | 5 +++--
sys/sys/namei.h | 8 +++++---
2 files changed, 8 insertions(+), 5 deletions(-)
diffs (48 lines):
diff -r fd60c55a30cc -r 74fe209b9a6a sys/rump/include/rump/rump_namei.h
--- a/sys/rump/include/rump/rump_namei.h Wed Jun 16 01:51:57 2021 +0000
+++ b/sys/rump/include/rump/rump_namei.h Wed Jun 16 01:52:39 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rump_namei.h,v 1.46 2020/05/30 20:16:34 ad Exp $ */
+/* $NetBSD: rump_namei.h,v 1.47 2021/06/16 01:52:39 dholland Exp $ */
/*
@@ -25,7 +25,8 @@
#define RUMP_NAMEI_EMULROOTSET 0x00000080
#define RUMP_NAMEI_LOCKSHARED 0x00000100
#define RUMP_NAMEI_NOCHROOT 0x01000000
-#define RUMP_NAMEI_MODMASK 0x010001fc
+#define RUMP_NAMEI_NONEXCLHACK 0x02000000
+#define RUMP_NAMEI_MODMASK 0x030001fc
#define RUMP_NAMEI_NOCROSSMOUNT 0x0000800
#define RUMP_NAMEI_RDONLY 0x0001000
#define RUMP_NAMEI_ISDOTDOT 0x0002000
diff -r fd60c55a30cc -r 74fe209b9a6a sys/sys/namei.h
--- a/sys/sys/namei.h Wed Jun 16 01:51:57 2021 +0000
+++ b/sys/sys/namei.h Wed Jun 16 01:52:39 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: namei.h,v 1.113 2020/05/30 20:16:34 ad Exp $ */
+/* $NetBSD: namei.h,v 1.114 2021/06/16 01:52:39 dholland Exp $ */
/*
@@ -162,7 +162,8 @@ struct nameidata {
in ni_erootdir */
#define LOCKSHARED 0x00000100 /* want shared locks if possible */
#define NOCHROOT 0x01000000 /* no chroot on abs path lookups */
-#define MODMASK 0x010001fc /* mask of operational modifiers */
+#define NONEXCLHACK 0x02000000 /* open wwith O_CREAT but not O_EXCL */
+#define MODMASK 0x030001fc /* mask of operational modifiers */
/*
* Namei parameter descriptors.
*/
@@ -364,7 +365,8 @@ struct nchstats _NAMEI_CACHE_STATS(uint6
#define NAMEI_EMULROOTSET 0x00000080
#define NAMEI_LOCKSHARED 0x00000100
#define NAMEI_NOCHROOT 0x01000000
-#define NAMEI_MODMASK 0x010001fc
+#define NAMEI_NONEXCLHACK 0x02000000
+#define NAMEI_MODMASK 0x030001fc
#define NAMEI_NOCROSSMOUNT 0x0000800
#define NAMEI_RDONLY 0x0001000
#define NAMEI_ISDOTDOT 0x0002000
Home |
Main Index |
Thread Index |
Old Index