aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2005-12-14 00:15:11 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2005-12-14 00:15:11 +0000
commite26b05cf4407578ef2228805825cd84c08def031 (patch)
treec8cef525141e9940fa35532b25f77af7b9af5ec6 /sys
parent6239708b1cfa3fc7401429cccc6a010df19eb16f (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/vnode.h6
-rw-r--r--sys/tools/vnode_if.awk3
2 files changed, 1 insertions, 8 deletions
diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h
index 4073e419b994..7b9edad4500f 100644
--- a/sys/sys/vnode.h
+++ b/sys/sys/vnode.h
@@ -451,12 +451,6 @@ struct vnodeop_desc {
int vdesc_cred_offset; /* cred location, if any */
int vdesc_thread_offset; /* thread 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.)
- */
- caddr_t *vdesc_transports;
};
#ifdef _KERNEL
diff --git a/sys/tools/vnode_if.awk b/sys/tools/vnode_if.awk
index 8c992fee292e..845f36b09a10 100644
--- a/sys/tools/vnode_if.awk
+++ b/sys/tools/vnode_if.awk
@@ -184,7 +184,6 @@ if (cfile) {
" VDESC_NO_OFFSET,\n" \
" VDESC_NO_OFFSET,\n" \
" VDESC_NO_OFFSET,\n" \
- " NULL,\n" \
"};\n");
}
@@ -413,7 +412,7 @@ while ((getline < srcfile) > 0) {
# componentname
printc("\t" find_arg_with_type("struct componentname *") ",");
# transport layer information
- printc("\tNULL,\n};\n");
+ printc("};\n");
}
}