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/bddd85a2961e
branches:  trunk
changeset: 933552:bddd85a2961e
user:      rin <rin%NetBSD.org@localhost>
date:      Wed May 27 02:04:37 2020 +0000

description:
Regen.

diffstat:

 sys/rump/include/rump/rump_namei.h |  5 +++--
 sys/sys/namei.h                    |  7 ++++---
 2 files changed, 7 insertions(+), 5 deletions(-)

diffs (59 lines):

diff -r 389407bfbc7c -r bddd85a2961e sys/rump/include/rump/rump_namei.h
--- a/sys/rump/include/rump/rump_namei.h        Wed May 27 02:03:30 2020 +0000
+++ b/sys/rump/include/rump/rump_namei.h        Wed May 27 02:04:37 2020 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: rump_namei.h,v 1.44 2020/05/26 22:06:11 ad Exp $       */
+/*     $NetBSD: rump_namei.h,v 1.45 2020/05/27 02:04:38 rin Exp $      */
 
 
 /*
  * WARNING: GENERATED FILE.  DO NOT EDIT
  * (edit namei.src and run make namei in src/sys/sys)
  *   by:   NetBSD: gennameih.awk,v 1.5 2009/12/23 14:17:19 pooka Exp 
- *   from: NetBSD: namei.src,v 1.56 2020/05/26 22:05:52 ad Exp 
+ *   from: NetBSD: namei.src,v 1.57 2020/05/27 02:03:30 rin Exp 
  */
 
 #ifndef _RUMP_RUMP_NAMEI_H_
@@ -31,6 +31,7 @@
 #define RUMP_NAMEI_ISDOTDOT    0x0002000
 #define RUMP_NAMEI_MAKEENTRY   0x0004000
 #define RUMP_NAMEI_ISLASTCN    0x0008000
+#define RUMP_NAMEI_WILLBEDIR   0x0010000
 #define RUMP_NAMEI_ISWHITEOUT  0x0020000
 #define RUMP_NAMEI_DOWHITEOUT  0x0040000
 #define RUMP_NAMEI_REQUIREDIR  0x0080000
diff -r 389407bfbc7c -r bddd85a2961e sys/sys/namei.h
--- a/sys/sys/namei.h   Wed May 27 02:03:30 2020 +0000
+++ b/sys/sys/namei.h   Wed May 27 02:04:37 2020 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: namei.h,v 1.111 2020/05/26 22:06:11 ad Exp $   */
+/*     $NetBSD: namei.h,v 1.112 2020/05/27 02:04:37 rin Exp $  */
 
 
 /*
  * WARNING: GENERATED FILE.  DO NOT EDIT
  * (edit namei.src and run make namei in src/sys/sys)
  *   by:   NetBSD: gennameih.awk,v 1.5 2009/12/23 14:17:19 pooka Exp 
- *   from: NetBSD: namei.src,v 1.56 2020/05/26 22:05:52 ad Exp 
+ *   from: NetBSD: namei.src,v 1.57 2020/05/27 02:03:30 rin Exp 
  */
 
 /*
@@ -171,7 +171,7 @@
 #define        ISDOTDOT        0x0002000       /* current component name is .. */
 #define        MAKEENTRY       0x0004000       /* entry is to be added to name cache */
 #define        ISLASTCN        0x0008000       /* this is last component of pathname */
-NAMIEFL        WILLBEDIR       0x0010000       /* new files will be dirs */
+#define        WILLBEDIR       0x0010000       /* new files will be dirs */
 #define        ISWHITEOUT      0x0020000       /* found whiteout */
 #define        DOWHITEOUT      0x0040000       /* do whiteouts */
 #define        REQUIREDIR      0x0080000       /* must be a directory */
@@ -367,6 +367,7 @@
 #define NAMEI_ISDOTDOT 0x0002000
 #define NAMEI_MAKEENTRY        0x0004000
 #define NAMEI_ISLASTCN 0x0008000
+#define NAMEI_WILLBEDIR        0x0010000
 #define NAMEI_ISWHITEOUT       0x0020000
 #define NAMEI_DOWHITEOUT       0x0040000
 #define NAMEI_REQUIREDIR       0x0080000



Home | Main Index | Thread Index | Old Index