Module Name: src
Committed By: dholland
Date: Mon Nov 5 19:06:40 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.20 -r1.21 src/sys/rump/include/rump/rump_namei.h
cvs rdiff -u -r1.84 -r1.85 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.20 src/sys/rump/include/rump/rump_namei.h:1.21
--- src/sys/rump/include/rump/rump_namei.h:1.20 Mon Nov 5 17:27:53 2012
+++ src/sys/rump/include/rump/rump_namei.h Mon Nov 5 19:06:39 2012
@@ -1,11 +1,11 @@
-/* $NetBSD: rump_namei.h,v 1.20 2012/11/05 17:27:53 dholland Exp $ */
+/* $NetBSD: rump_namei.h,v 1.21 2012/11/05 19:06: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.29 2012/11/05 17:27:37 dholland Exp
+ * from: NetBSD: namei.src,v 1.30 2012/11/05 19:06:26 dholland Exp
*/
#ifndef _RUMP_RUMP_NAMEI_H_
Index: src/sys/sys/namei.h
diff -u src/sys/sys/namei.h:1.84 src/sys/sys/namei.h:1.85
--- src/sys/sys/namei.h:1.84 Mon Nov 5 17:27:52 2012
+++ src/sys/sys/namei.h Mon Nov 5 19:06:39 2012
@@ -1,11 +1,11 @@
-/* $NetBSD: namei.h,v 1.84 2012/11/05 17:27:52 dholland Exp $ */
+/* $NetBSD: namei.h,v 1.85 2012/11/05 19:06: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.29 2012/11/05 17:27:37 dholland Exp
+ * from: NetBSD: namei.src,v 1.30 2012/11/05 19:06:26 dholland Exp
*/
/*
@@ -91,7 +91,7 @@ struct nameidata {
/*
* Arguments to namei/lookup.
*/
- struct vnode *ni_startdir; /* starting dir, cwd if null */
+ struct vnode *ni_atdir; /* startup dir, cwd if null */
struct pathbuf *ni_pathbuf; /* pathname container */
char *ni_pnbuf; /* extra pathname buffer ref (XXX) */
/*
@@ -176,7 +176,7 @@ struct nameidata {
#define NDINIT(ndp, op, flags, pathbuf) { \
(ndp)->ni_cnd.cn_nameiop = op; \
(ndp)->ni_cnd.cn_flags = flags; \
- (ndp)->ni_startdir = NULL; \
+ (ndp)->ni_atdir = NULL; \
(ndp)->ni_pathbuf = pathbuf; \
(ndp)->ni_cnd.cn_cred = kauth_cred_get(); \
}
@@ -185,7 +185,7 @@ struct nameidata {
* Use this to set the start directory for openat()-type operations.
*/
#define NDAT(ndp, dir) { \
- (ndp)->ni_startdir = (dir); \
+ (ndp)->ni_atdir = (dir); \
}
#endif