Module Name: src Committed By: dholland Date: Mon Nov 5 17:24:39 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.18 -r1.19 src/sys/rump/include/rump/rump_namei.h cvs rdiff -u -r1.82 -r1.83 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.18 src/sys/rump/include/rump/rump_namei.h:1.19 --- src/sys/rump/include/rump/rump_namei.h:1.18 Sat Oct 13 17:47:11 2012 +++ src/sys/rump/include/rump/rump_namei.h Mon Nov 5 17:24:39 2012 @@ -1,11 +1,11 @@ -/* $NetBSD: rump_namei.h,v 1.18 2012/10/13 17:47:11 dholland Exp $ */ +/* $NetBSD: rump_namei.h,v 1.19 2012/11/05 17:24:39 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.27 2012/10/13 17:46:50 dholland Exp + * from: NetBSD: namei.src,v 1.28 2012/11/05 17:24:09 dholland Exp */ #ifndef _RUMP_RUMP_NAMEI_H_ Index: src/sys/sys/namei.h diff -u src/sys/sys/namei.h:1.82 src/sys/sys/namei.h:1.83 --- src/sys/sys/namei.h:1.82 Sat Oct 13 17:47:11 2012 +++ src/sys/sys/namei.h Mon Nov 5 17:24:39 2012 @@ -1,11 +1,11 @@ -/* $NetBSD: namei.h,v 1.82 2012/10/13 17:47:11 dholland Exp $ */ +/* $NetBSD: namei.h,v 1.83 2012/11/05 17:24:39 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.27 2012/10/13 17:46:50 dholland Exp + * from: NetBSD: namei.src,v 1.28 2012/11/05 17:24:09 dholland Exp */ /* @@ -127,7 +127,6 @@ struct nameidata { */ 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 */ size_t cn_consume; /* chars to consume in lookup */ } ni_cnd; }; @@ -272,9 +271,10 @@ void cache_purge1(struct vnode *, const #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 *, struct vnode **, struct componentname *); -int cache_lookup_raw(struct vnode *, struct vnode **, - struct componentname *); +int cache_lookup(struct vnode *, const struct componentname *, + int *, struct vnode **); +int cache_lookup_raw(struct vnode *, const struct componentname *, + int *, struct vnode **); int cache_revlookup(struct vnode *, struct vnode **, char **, char *); void cache_enter(struct vnode *, struct vnode *, struct componentname *); void nchinit(void);