Module Name: src
Committed By: pooka
Date: Sat Apr 10 19:41:55 UTC 2010
Modified Files:
src/sys/kern: vnode_if.sh
src/sys/sys: vnode.h
Log Message:
"Not yet" since 4.4BSD is quite a lot of "not yet", so remove
vdesc_transports from vnodeop_desc until we have a "not not yet"
situation.
Ride 5.99.27 bump (full build still in progress. i wanted to get
this in as soon as possible to most effectively ride the bump.)
To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.54 src/sys/kern/vnode_if.sh
cvs rdiff -u -r1.215 -r1.216 src/sys/sys/vnode.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/kern/vnode_if.sh
diff -u src/sys/kern/vnode_if.sh:1.53 src/sys/kern/vnode_if.sh:1.54
--- src/sys/kern/vnode_if.sh:1.53 Thu Oct 15 00:29:40 2009
+++ src/sys/kern/vnode_if.sh Sat Apr 10 19:41:54 2010
@@ -29,7 +29,7 @@
* SUCH DAMAGE.
*/
"
-SCRIPT_ID='$NetBSD: vnode_if.sh,v 1.53 2009/10/15 00:29:40 pooka Exp $'
+SCRIPT_ID='$NetBSD: vnode_if.sh,v 1.54 2010/04/10 19:41:54 pooka Exp $'
# Script to produce VFS front-end sugar.
#
@@ -306,7 +306,6 @@
VDESC_NO_OFFSET,
VDESC_NO_OFFSET,
VDESC_NO_OFFSET,
- NULL,
};
'
@@ -370,8 +369,7 @@
do_offset("kauth_cred_t");
# componentname
do_offset("struct componentname *");
- # transport layer information
- printf ("\tNULL,\n};\n");
+ printf ("};\n");
# Define function.
printf("int\n%s(", toupper(name));
Index: src/sys/sys/vnode.h
diff -u src/sys/sys/vnode.h:1.215 src/sys/sys/vnode.h:1.216
--- src/sys/sys/vnode.h:1.215 Mon Mar 29 13:11:32 2010
+++ src/sys/sys/vnode.h Sat Apr 10 19:41:54 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: vnode.h,v 1.215 2010/03/29 13:11:32 pooka Exp $ */
+/* $NetBSD: vnode.h,v 1.216 2010/04/10 19:41:54 pooka Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -475,12 +475,6 @@
int vdesc_vpp_offset; /* return vpp location */
int vdesc_cred_offset; /* cred location, if any */
int vdesc_componentname_offset; /* if any */
- /*
- * Finally, we've got a list of private data (about each operation)
- * for each transport layer. (Support to manage this list is not
- * yet part of BSD.)
- */
- void * *vdesc_transports;
};
#ifdef _KERNEL