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/fa436ef38c01
branches:  trunk
changeset: 459493:fa436ef38c01
user:      christos <christos%NetBSD.org@localhost>
date:      Fri Sep 13 13:59:31 2019 +0000

description:
Regen

diffstat:

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

diffs (90 lines):

diff -r cfba165875c1 -r fa436ef38c01 sys/rump/include/rump/rump_namei.h
--- a/sys/rump/include/rump/rump_namei.h        Fri Sep 13 13:58:53 2019 +0000
+++ b/sys/rump/include/rump/rump_namei.h        Fri Sep 13 13:59:31 2019 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: rump_namei.h,v 1.32 2019/06/03 06:05:39 msaitoh Exp $  */
+/*     $NetBSD: rump_namei.h,v 1.33 2019/09/13 13:59:31 christos 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.42 2019/06/03 06:04:21 msaitoh Exp 
+ *   from: NetBSD: namei.src,v 1.43 2019/09/13 13:58:53 christos Exp 
  */
 
 #ifndef _RUMP_RUMP_NAMEI_H_
diff -r cfba165875c1 -r fa436ef38c01 sys/sys/namei.h
--- a/sys/sys/namei.h   Fri Sep 13 13:58:53 2019 +0000
+++ b/sys/sys/namei.h   Fri Sep 13 13:59:31 2019 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: namei.h,v 1.98 2019/06/03 06:05:39 msaitoh Exp $       */
+/*     $NetBSD: namei.h,v 1.99 2019/09/13 13:59:31 christos 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.42 2019/06/03 06:04:21 msaitoh Exp 
+ *   from: NetBSD: namei.src,v 1.43 2019/09/13 13:58:53 christos Exp 
  */
 
 /*
@@ -195,20 +195,17 @@
 
 #endif
 
+#ifdef __NAMECACHE_PRIVATE
 /*
- * This structure describes the elements in the cache of recent
- * names looked up by namei. NCHNAMLEN is sized to make structure
- * size a power of two to optimize allocations.  Minimum reasonable
- * size is 15.
+ * For simplicity (and economy of storage), names longer than
+ * a maximum length of NCHNAMLEN are stored in non-pooled storage.
  */
-
-#define        NCHNAMLEN       31      /* maximum name segment length we bother with */
+#define        NCHNAMLEN       32      /* up to this size gets stored in pool */
 
 /*
- * Namecache entry.  This structure is arranged so that frequently
- * accessed and mostly read-only data is toward the front, with
- * infrequently accessed data and the lock towards the rear.  The
- * lock is then more likely to be in a separate cache line.
+ * Namecache entry.  
+ * This structure describes the elements in the cache of recent
+ * names looked up by namei.
  *
  * Locking rules:
  *
@@ -222,18 +219,21 @@
 struct namecache {
        LIST_ENTRY(namecache) nc_hash;  /* L/C hash chain */
        LIST_ENTRY(namecache) nc_vhash; /* L directory hash chain */
+       TAILQ_ENTRY(namecache) nc_lru;  /* L pseudo-lru chain */
+       LIST_ENTRY(namecache) nc_dvlist;/* L dvp's list of cache entries */
+       LIST_ENTRY(namecache) nc_vlist; /* L vp's list of cache entries */
        struct  vnode *nc_dvp;          /* N vnode of parent of name */
        struct  vnode *nc_vp;           /* N vnode the name refers to */
-       int     nc_flags;               /* - copy of componentname ISWHITEOUT */
-       char    nc_nlen;                /* - length of name */
-       char    nc_name[NCHNAMLEN];     /* - segment name */
        void    *nc_gcqueue;            /* N queue for garbage collection */
-       TAILQ_ENTRY(namecache) nc_lru;  /* L psuedo-lru chain */
-       LIST_ENTRY(namecache) nc_dvlist;/* L dvp's list of cache entries */
-       LIST_ENTRY(namecache) nc_vlist; /* L vp's list of cache entries */
        kmutex_t nc_lock;               /*   lock on this entry */
        int     nc_hittime;             /* N last time scored a hit */
+       int     nc_flags;               /* - copy of componentname ISWHITEOUT */
+       u_short nc_nlen;                /* - length of name */
+       char    nc_name[0];             /* - segment name */
 };
+__CTASSERT((sizeof(struct namecache) + NCHNAMLEN)
+    % __alignof(struct namecache) == 0);
+#endif
 
 #ifdef _KERNEL
 #include <sys/pool.h>



Home | Main Index | Thread Index | Old Index