Source-Changes-HG archive

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

[src/trunk]: src/sys regen



details:   https://anonhg.NetBSD.org/src/rev/593b009bc3ce
branches:  trunk
changeset: 782539:593b009bc3ce
user:      dholland <dholland%NetBSD.org@localhost>
date:      Mon Nov 05 17:24:39 2012 +0000

description:
regen

diffstat:

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

diffs (56 lines):

diff -r 9339536f458e -r 593b009bc3ce sys/rump/include/rump/rump_namei.h
--- a/sys/rump/include/rump/rump_namei.h        Mon Nov 05 17:24:09 2012 +0000
+++ b/sys/rump/include/rump/rump_namei.h        Mon Nov 05 17:24:39 2012 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: rump_namei.h,v 1.18 2012/10/13 17:47:11 dholland Exp $ */
+/*     $NetBSD: rump_namei.h,v 1.19 2012/11/05 17:24:39 dholland 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.27 2012/10/13 17:46:50 dholland Exp 
+ *   from: NetBSD: namei.src,v 1.28 2012/11/05 17:24:09 dholland Exp 
  */
 
 #ifndef _RUMP_RUMP_NAMEI_H_
diff -r 9339536f458e -r 593b009bc3ce sys/sys/namei.h
--- a/sys/sys/namei.h   Mon Nov 05 17:24:09 2012 +0000
+++ b/sys/sys/namei.h   Mon Nov 05 17:24:39 2012 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: namei.h,v 1.82 2012/10/13 17:47:11 dholland Exp $      */
+/*     $NetBSD: namei.h,v 1.83 2012/11/05 17:24:39 dholland 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.27 2012/10/13 17:46:50 dholland Exp 
+ *   from: NetBSD: namei.src,v 1.28 2012/11/05 17:24:09 dholland Exp 
  */
 
 /*
@@ -127,7 +127,6 @@
                 */
                const char      *cn_nameptr;    /* pointer to looked up name */
                size_t          cn_namelen;     /* length of looked up comp */
-               u_long          cn_hash;        /* hash val of looked up name */
                size_t          cn_consume;     /* chars to consume in lookup */
        } ni_cnd;
 };
@@ -272,9 +271,10 @@
 #define        PURGE_PARENTS   1
 #define        PURGE_CHILDREN  2
 #define        cache_purge(vp) cache_purge1((vp), NULL, PURGE_PARENTS|PURGE_CHILDREN)
-int    cache_lookup(struct vnode *, struct vnode **, struct componentname *);
-int    cache_lookup_raw(struct vnode *, struct vnode **,
-                        struct componentname *);
+int    cache_lookup(struct vnode *, const struct componentname *,
+                       int *, struct vnode **);
+int    cache_lookup_raw(struct vnode *, const struct componentname *,
+                       int *, struct vnode **);
 int    cache_revlookup(struct vnode *, struct vnode **, char **, char *);
 void   cache_enter(struct vnode *, struct vnode *, struct componentname *);
 void   nchinit(void);



Home | Main Index | Thread Index | Old Index