Module Name:    src
Committed By:   dholland
Date:           Tue Nov 30 10:44:46 UTC 2010

Modified Files:
        src/sys/rump/include/rump: rump_namei.h
        src/sys/sys: namei.h

Log Message:
Regen for both preceding commits of namei.src together. I suppose I should
technically have regen'd separately for each but it didn't seem worthwhile.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/rump/include/rump/rump_namei.h
cvs rdiff -u -r1.69 -r1.70 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.8 src/sys/rump/include/rump/rump_namei.h:1.9
--- src/sys/rump/include/rump/rump_namei.h:1.8	Fri Nov 19 06:45:29 2010
+++ src/sys/rump/include/rump/rump_namei.h	Tue Nov 30 10:44:45 2010
@@ -1,11 +1,11 @@
-/*	$NetBSD: rump_namei.h,v 1.8 2010/11/19 06:45:29 dholland Exp $	*/
+/*	$NetBSD: rump_namei.h,v 1.9 2010/11/30 10:44:45 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.15 2010/11/19 06:44:34 dholland Exp 
+ *   from: NetBSD: namei.src,v 1.17 2010/11/30 10:43:01 dholland Exp 
  */
 
 #ifndef _RUMP_RUMP_NAMEI_H_
@@ -27,8 +27,6 @@
 #define RUMP_NAMEI_MODMASK	0x010000fc
 #define RUMP_NAMEI_NOCROSSMOUNT	0x0000100
 #define RUMP_NAMEI_RDONLY	0x0000200
-#define RUMP_NAMEI_HASBUF	0x0000400
-#define RUMP_NAMEI_SAVENAME	0x0000800
 #define RUMP_NAMEI_SAVESTART	0x0001000
 #define RUMP_NAMEI_ISDOTDOT	0x0002000
 #define RUMP_NAMEI_MAKEENTRY	0x0004000

Index: src/sys/sys/namei.h
diff -u src/sys/sys/namei.h:1.69 src/sys/sys/namei.h:1.70
--- src/sys/sys/namei.h:1.69	Fri Nov 19 06:45:29 2010
+++ src/sys/sys/namei.h	Tue Nov 30 10:44:44 2010
@@ -1,11 +1,11 @@
-/*	$NetBSD: namei.h,v 1.69 2010/11/19 06:45:29 dholland Exp $	*/
+/*	$NetBSD: namei.h,v 1.70 2010/11/30 10:44:44 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.15 2010/11/19 06:44:34 dholland Exp 
+ *   from: NetBSD: namei.src,v 1.17 2010/11/30 10:43:01 dholland Exp 
  */
 
 /*
@@ -60,10 +60,17 @@
  * STRUCT NAMEIDATA IS DEAD, call pathbuf_destroy. Don't destroy the
  * pathbuf before you've finished using the nameidata, or mysterious
  * bad things may happen.
+ *
+ * pathbuf_assimilate is like pathbuf_create but assumes ownership of
+ * the string buffer passed in, which MUST BE of size PATH_MAX and
+ * have been allocated with PNBUF_GET(). This should only be used when
+ * absolutely necessary; e.g. nfsd uses it for loading paths from
+ * mbufs.
  */
 struct pathbuf;
 
 struct pathbuf *pathbuf_create(const char *path);
+struct pathbuf *pathbuf_assimilate(char *path);
 int pathbuf_copyin(const char *userpath, struct pathbuf **ret);
 void pathbuf_destroy(struct pathbuf *);
 
@@ -85,8 +92,7 @@
 	 * Arguments to namei/lookup.
 	 */
 	struct pathbuf *ni_pathbuf;	/* pathname container */
-	//const char *ni_dirp;		/* pathname pointer */
-	//enum	uio_seg ni_segflg;	/* location of pathname */
+	char *ni_pnbuf;			/* extra pathname buffer ref (XXX) */
 	/*
 	 * Arguments to lookup.
 	 */
@@ -119,7 +125,6 @@
 		/*
 		 * Shared between lookup and commit routines.
 		 */
-		char		*cn_pnbuf;	/* pathname buffer */
 		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 */
@@ -153,21 +158,13 @@
 /*
  * Namei parameter descriptors.
  *
- * SAVENAME may be set by either the callers of namei or by VOP_LOOKUP.
- * If the caller of namei sets the flag (for example execve wants to
- * know the name of the program that is being executed), then it must
- * free the buffer. If VOP_LOOKUP sets the flag, then the buffer must
- * be freed by either the commit routine or the VOP_ABORT routine.
- * SAVESTART is set only by the callers of namei. It implies SAVENAME
- * plus the addition of saving the parent directory that contains the
- * name in ni_startdir. It allows repeated calls to lookup for the
- * name being sought. The caller is responsible for releasing the
- * buffer and for vrele'ing ni_startdir.
+ * SAVESTART is set only by the callers of namei. It implies saving
+ * the parent directory that contains the name in ni_startdir. It
+ * allows repeated calls to lookup for the name being sought. The
+ * caller is responsible for vrele'ing ni_startdir.
  */
 #define	NOCROSSMOUNT	0x0000100	/* do not cross mount points */
 #define	RDONLY		0x0000200	/* lookup with read-only semantics */
-#define	HASBUF		0x0000400	/* has allocated pathname buffer */
-#define	SAVENAME	0x0000800	/* save pathname buffer */
 #define	SAVESTART	0x0001000	/* save starting directory */
 #define	ISDOTDOT	0x0002000	/* current component name is .. */
 #define	MAKEENTRY	0x0004000	/* entry is to be added to name cache */
@@ -325,8 +322,6 @@
 #define NAMEI_MODMASK	0x010000fc
 #define NAMEI_NOCROSSMOUNT	0x0000100
 #define NAMEI_RDONLY	0x0000200
-#define NAMEI_HASBUF	0x0000400
-#define NAMEI_SAVENAME	0x0000800
 #define NAMEI_SAVESTART	0x0001000
 #define NAMEI_ISDOTDOT	0x0002000
 #define NAMEI_MAKEENTRY	0x0004000

Reply via email to