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/af5904b7ecf5
branches:  trunk
changeset: 746192:af5904b7ecf5
user:      ad <ad%NetBSD.org@localhost>
date:      Mon Mar 23 23:28:47 2020 +0000

description:
Regen.

diffstat:

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

diffs (55 lines):

diff -r 2deba1c20a34 -r af5904b7ecf5 sys/rump/include/rump/rump_namei.h
--- a/sys/rump/include/rump/rump_namei.h        Mon Mar 23 23:28:11 2020 +0000
+++ b/sys/rump/include/rump/rump_namei.h        Mon Mar 23 23:28:47 2020 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: rump_namei.h,v 1.40 2020/03/23 18:43:48 ad Exp $       */
+/*     $NetBSD: rump_namei.h,v 1.41 2020/03/23 23:28:47 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.51 2020/03/23 18:41:40 ad Exp 
+ *   from: NetBSD: namei.src,v 1.52 2020/03/23 23:28:11 ad Exp 
  */
 
 #ifndef _RUMP_RUMP_NAMEI_H_
diff -r 2deba1c20a34 -r af5904b7ecf5 sys/sys/namei.h
--- a/sys/sys/namei.h   Mon Mar 23 23:28:11 2020 +0000
+++ b/sys/sys/namei.h   Mon Mar 23 23:28:47 2020 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: namei.h,v 1.106 2020/03/23 18:43:48 ad Exp $   */
+/*     $NetBSD: namei.h,v 1.107 2020/03/23 23:28:47 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.51 2020/03/23 18:41:40 ad Exp 
+ *   from: NetBSD: namei.src,v 1.52 2020/03/23 23:28:11 ad Exp 
  */
 
 /*
@@ -216,16 +216,15 @@
  * Field markings and their corresponding locks:
  *
  * -  stable throught the lifetime of the namecache entry
- * d  protected by nc_dvp->vi_ncdlock
- * v  protected by nc_dvp->vi_ncvlock
+ * d  protected by nc_dvp->vi_nc_lock
+ * v  protected by nc_vp->vi_nc_listlock
  * l  protected by cache_lru_lock
- * u  accesses are unlocked, no serialization applied
  */
 struct nchnode;
 struct namecache {
        struct  rb_node nc_tree;        /* d  red-black tree, must be first */
-       uint64_t nc_key;                /* -  hash key */
-       TAILQ_ENTRY(namecache) nc_list; /* v  vp's list of cache entries */
+       uint64_t nc_key;                /* -  hashed key value */
+       TAILQ_ENTRY(namecache) nc_list; /* v  nc_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 */



Home | Main Index | Thread Index | Old Index