Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys regen
details: https://anonhg.NetBSD.org/src/rev/1754117397c6
branches: trunk
changeset: 782547:1754117397c6
user: dholland <dholland%NetBSD.org@localhost>
date: Mon Nov 05 19:06:39 2012 +0000
description:
regen
diffstat:
sys/rump/include/rump/rump_namei.h | 4 ++--
sys/sys/namei.h | 10 +++++-----
2 files changed, 7 insertions(+), 7 deletions(-)
diffs (61 lines):
diff -r 5c482852af98 -r 1754117397c6 sys/rump/include/rump/rump_namei.h
--- a/sys/rump/include/rump/rump_namei.h Mon Nov 05 19:06:26 2012 +0000
+++ b/sys/rump/include/rump/rump_namei.h Mon Nov 05 19:06:39 2012 +0000
@@ -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_
diff -r 5c482852af98 -r 1754117397c6 sys/sys/namei.h
--- a/sys/sys/namei.h Mon Nov 05 19:06:26 2012 +0000
+++ b/sys/sys/namei.h Mon Nov 05 19:06:39 2012 +0000
@@ -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 @@
/*
* 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 @@
#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 @@
* Use this to set the start directory for openat()-type operations.
*/
#define NDAT(ndp, dir) { \
- (ndp)->ni_startdir = (dir); \
+ (ndp)->ni_atdir = (dir); \
}
#endif
Home |
Main Index |
Thread Index |
Old Index