mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Nuke vnodeop_desc.vdesc_transports, which has been unused since the dawn
of time (or the inception of ncvs, whichever came last)
This commit is contained in:
parent
6239708b1c
commit
e26b05cf44
2 changed files with 1 additions and 8 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue