Module Name:    src
Committed By:   dholland
Date:           Mon Nov  5 17:27:53 UTC 2012

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.19 -r1.20 src/sys/rump/include/rump/rump_namei.h
cvs rdiff -u -r1.83 -r1.84 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.19 src/sys/rump/include/rump/rump_namei.h:1.20
--- src/sys/rump/include/rump/rump_namei.h:1.19	Mon Nov  5 17:24:39 2012
+++ src/sys/rump/include/rump/rump_namei.h	Mon Nov  5 17:27:53 2012
@@ -1,11 +1,11 @@
-/*	$NetBSD: rump_namei.h,v 1.19 2012/11/05 17:24:39 dholland Exp $	*/
+/*	$NetBSD: rump_namei.h,v 1.20 2012/11/05 17:27:53 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.28 2012/11/05 17:24:09 dholland Exp 
+ *   from: NetBSD: namei.src,v 1.29 2012/11/05 17:27:37 dholland Exp 
  */
 
 #ifndef _RUMP_RUMP_NAMEI_H_

Index: src/sys/sys/namei.h
diff -u src/sys/sys/namei.h:1.83 src/sys/sys/namei.h:1.84
--- src/sys/sys/namei.h:1.83	Mon Nov  5 17:24:39 2012
+++ src/sys/sys/namei.h	Mon Nov  5 17:27:52 2012
@@ -1,11 +1,11 @@
-/*	$NetBSD: namei.h,v 1.83 2012/11/05 17:24:39 dholland Exp $	*/
+/*	$NetBSD: namei.h,v 1.84 2012/11/05 17:27:52 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.28 2012/11/05 17:24:09 dholland Exp 
+ *   from: NetBSD: namei.src,v 1.29 2012/11/05 17:27:37 dholland Exp 
  */
 
 /*
@@ -267,16 +267,17 @@ uint32_t namei_hash(const char *, const 
 int	lookup_for_nfsd(struct nameidata *, struct vnode *, int neverfollow);
 int	lookup_for_nfsd_index(struct nameidata *, struct vnode *);
 int	relookup(struct vnode *, struct vnode **, struct componentname *, int);
-void	cache_purge1(struct vnode *, const struct componentname *, int);
+void	cache_purge1(struct vnode *, const char *, size_t, int);
 #define	PURGE_PARENTS	1
 #define	PURGE_CHILDREN	2
-#define	cache_purge(vp)	cache_purge1((vp), NULL, PURGE_PARENTS|PURGE_CHILDREN)
-int	cache_lookup(struct vnode *, const struct componentname *,
+#define	cache_purge(vp)	cache_purge1((vp),NULL,0,PURGE_PARENTS|PURGE_CHILDREN)
+int	cache_lookup(struct vnode *, const char *, size_t, uint32_t, uint32_t,
 			int *, struct vnode **);
-int	cache_lookup_raw(struct vnode *, const struct componentname *,
+int	cache_lookup_raw(struct vnode *, const char *, size_t, uint32_t,
 			int *, struct vnode **);
 int	cache_revlookup(struct vnode *, struct vnode **, char **, char *);
-void	cache_enter(struct vnode *, struct vnode *, struct componentname *);
+void	cache_enter(struct vnode *, struct vnode *,
+			const char *, size_t, uint32_t);
 void	nchinit(void);
 void	nchreinit(void);
 void	cache_cpu_init(struct cpu_info *);

Reply via email to