Module Name: src
Committed By: ad
Date: Sun Sep 10 14:46:19 UTC 2023
Modified Files:
src/sys/rump/include/rump: rump_namei.h
src/sys/sys: namei.h
Log Message:
Regen.
To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 src/sys/rump/include/rump/rump_namei.h
cvs rdiff -u -r1.116 -r1.117 src/sys/sys/namei.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/rump/include/rump/rump_namei.h
diff -u src/sys/rump/include/rump/rump_namei.h:1.49 src/sys/rump/include/rump/rump_namei.h:1.50
--- src/sys/rump/include/rump/rump_namei.h:1.49 Sat Sep 9 18:28:48 2023
+++ src/sys/rump/include/rump/rump_namei.h Sun Sep 10 14:46:19 2023
@@ -1,11 +1,11 @@
-/* $NetBSD: rump_namei.h,v 1.49 2023/09/09 18:28:48 ad Exp $ */
+/* $NetBSD: rump_namei.h,v 1.50 2023/09/10 14:46:19 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.61 2023/09/09 18:27:59 ad Exp
+ * from: NetBSD: namei.src,v 1.62 2023/09/10 14:45:53 ad Exp
*/
#ifndef _RUMP_RUMP_NAMEI_H_
Index: src/sys/sys/namei.h
diff -u src/sys/sys/namei.h:1.116 src/sys/sys/namei.h:1.117
--- src/sys/sys/namei.h:1.116 Sat Sep 9 18:28:48 2023
+++ src/sys/sys/namei.h Sun Sep 10 14:46:18 2023
@@ -1,11 +1,11 @@
-/* $NetBSD: namei.h,v 1.116 2023/09/09 18:28:48 ad Exp $ */
+/* $NetBSD: namei.h,v 1.117 2023/09/10 14:46:18 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.61 2023/09/09 18:27:59 ad Exp
+ * from: NetBSD: namei.src,v 1.62 2023/09/10 14:45:53 ad Exp
*/
/*
@@ -252,15 +252,13 @@ struct namecache {
#endif /* __NAMECACHE_PRIVATE */
#ifdef _KERNEL
-#include <sys/pool.h>
+#include <sys/kmem.h>
struct mount;
struct cpu_info;
-extern pool_cache_t pnbuf_cache; /* pathname buffer cache */
-
-#define PNBUF_GET() ((char *)pool_cache_get(pnbuf_cache, PR_WAITOK))
-#define PNBUF_PUT(pnb) pool_cache_put(pnbuf_cache, (void *)(pnb))
+#define PNBUF_GET() ((char *)kmem_alloc(MAXPATHLEN, KM_SLEEP))
+#define PNBUF_PUT(pnb) kmem_free((pnb), MAXPATHLEN)
/*
* Typesafe flags for namei_simple/nameiat_simple.