Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys regen: fix PARAMASK



details:   https://anonhg.NetBSD.org/src/rev/b452e314277d
branches:  trunk
changeset: 760542:b452e314277d
user:      pooka <pooka%NetBSD.org@localhost>
date:      Fri Jan 07 11:25:43 2011 +0000

description:
regen: fix PARAMASK

diffstat:

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

diffs (59 lines):

diff -r c56a90f72d91 -r b452e314277d sys/rump/include/rump/rump_namei.h
--- a/sys/rump/include/rump/rump_namei.h        Fri Jan 07 11:25:10 2011 +0000
+++ b/sys/rump/include/rump/rump_namei.h        Fri Jan 07 11:25:43 2011 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: rump_namei.h,v 1.13 2011/01/02 05:12:57 dholland Exp $ */
+/*     $NetBSD: rump_namei.h,v 1.14 2011/01/07 11:25:43 pooka 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.21 2011/01/02 05:12:33 dholland Exp 
+ *   from: NetBSD: namei.src,v 1.22 2011/01/07 11:25:10 pooka Exp 
  */
 
 #ifndef _RUMP_RUMP_NAMEI_H_
@@ -37,6 +37,6 @@
 #define RUMP_NAMEI_CREATEDIR   0x0200000
 #define RUMP_NAMEI_INRENAME    0x0400000
 #define RUMP_NAMEI_INRELOOKUP  0x0800000
-#define RUMP_NAMEI_PARAMASK    0x0efef00
+#define RUMP_NAMEI_PARAMASK    0x0efe300
 
 #endif /* _RUMP_RUMP_NAMEI_H_ */
diff -r c56a90f72d91 -r b452e314277d sys/sys/namei.h
--- a/sys/sys/namei.h   Fri Jan 07 11:25:10 2011 +0000
+++ b/sys/sys/namei.h   Fri Jan 07 11:25:43 2011 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: namei.h,v 1.74 2011/01/02 05:12:56 dholland Exp $      */
+/*     $NetBSD: namei.h,v 1.75 2011/01/07 11:25:43 pooka 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.21 2011/01/02 05:12:33 dholland Exp 
+ *   from: NetBSD: namei.src,v 1.22 2011/01/07 11:25:10 pooka Exp 
  */
 
 /*
@@ -169,7 +169,7 @@
 #define        CREATEDIR       0x0200000       /* trailing slashes are ok */
 #define        INRENAME        0x0400000       /* operation is a part of ``rename'' */
 #define        INRELOOKUP      0x0800000       /* set while inside relookup() */
-#define        PARAMASK        0x0efef00       /* mask of parameter descriptors */
+#define        PARAMASK        0x0efe300       /* mask of parameter descriptors */
 
 /*
  * Initialization of an nameidata structure.
@@ -326,6 +326,6 @@
 #define NAMEI_CREATEDIR        0x0200000
 #define NAMEI_INRENAME 0x0400000
 #define NAMEI_INRELOOKUP       0x0800000
-#define NAMEI_PARAMASK 0x0efef00
+#define NAMEI_PARAMASK 0x0efe300
 
 #endif /* !_SYS_NAMEI_H_ */



Home | Main Index | Thread Index | Old Index