summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/sys/include/os/vnode.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sys/include/os/vnode.h b/src/sys/include/os/vnode.h
index 0c89702..afa07f8 100644
--- a/src/sys/include/os/vnode.h
+++ b/src/sys/include/os/vnode.h
@@ -78,12 +78,12 @@ struct vop {
* such as a file, directory, network file object,
* etc.
*
- * [D]: Set up by driver
+ * [F]: Set up by filesystem
* [V] Set up by VFS
- * [D/V]: Both D and V
+ * [F/V]: Both F and V
*
- * @type: Vnode type [D/V]
- * @vops: Vnode operations hooks [D]
+ * @type: Vnode type [F/V]
+ * @vops: Vnode operations hooks [F]
*/
struct vnode {
vtype_t type;