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/c8ae8aa9e819
branches:  trunk
changeset: 746183:c8ae8aa9e819
user:      ad <ad%NetBSD.org@localhost>
date:      Mon Mar 23 18:43:48 2020 +0000

description:
Regen.

diffstat:

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

diffs (58 lines):

diff -r 9e41949abb8b -r c8ae8aa9e819 sys/rump/include/rump/rump_namei.h
--- a/sys/rump/include/rump/rump_namei.h        Mon Mar 23 18:41:40 2020 +0000
+++ b/sys/rump/include/rump/rump_namei.h        Mon Mar 23 18:43:48 2020 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: rump_namei.h,v 1.39 2020/03/22 14:39:03 ad Exp $       */
+/*     $NetBSD: rump_namei.h,v 1.40 2020/03/23 18:43:48 ad 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.49 2020/03/22 14:38:37 ad Exp 
+ *   from: NetBSD: namei.src,v 1.51 2020/03/23 18:41:40 ad Exp 
  */
 
 #ifndef _RUMP_RUMP_NAMEI_H_
diff -r 9e41949abb8b -r c8ae8aa9e819 sys/sys/namei.h
--- a/sys/sys/namei.h   Mon Mar 23 18:41:40 2020 +0000
+++ b/sys/sys/namei.h   Mon Mar 23 18:43:48 2020 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: namei.h,v 1.105 2020/03/22 14:39:03 ad Exp $   */
+/*     $NetBSD: namei.h,v 1.106 2020/03/23 18:43:48 ad 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.49 2020/03/22 14:38:37 ad Exp 
+ *   from: NetBSD: namei.src,v 1.51 2020/03/23 18:41:40 ad Exp 
  */
 
 /*
@@ -224,13 +224,13 @@
 struct nchnode;
 struct namecache {
        struct  rb_node nc_tree;        /* d  red-black tree, must be first */
-       int64_t nc_key;                 /* -  hash key */
+       uint64_t nc_key;                /* -  hash key */
        TAILQ_ENTRY(namecache) nc_list; /* v  vp's list of cache entries */
        TAILQ_ENTRY(namecache) nc_lru;  /* l  pseudo-lru chain */
        struct  vnode *nc_dvp;          /* -  vnode of parent of name */
        struct  vnode *nc_vp;           /* -  vnode the name refers to */
        int     nc_lrulist;             /* l  which LRU list its on */
-       short   nc_nlen;                /* -  length of the name */
+       u_short nc_nlen;                /* -  length of the name */
        char    nc_whiteout;            /* -  true if a whiteout */
        char    nc_name[41];            /* -  segment name */
 };
@@ -336,7 +336,6 @@
        type    ncs_2passes;    /* number of times we attempt it (U) */ \
        type    ncs_revhits;    /* reverse-cache hits */                \
        type    ncs_revmiss;    /* reverse-cache misses */              \
-       type    ncs_collisions; /* hash value collisions */             \
        type    ncs_denied;     /* access denied */                     \
 }
 



Home | Main Index | Thread Index | Old Index