From 3f2376d3260ea77beb6601059f12cf47f131d9e4 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sun, 21 Sep 2025 19:35:57 -0400 Subject: sys: vnode: "driver" -> "filesystem" Signed-off-by: Ian Moffett --- src/sys/include/os/vnode.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/sys/include/os/vnode.h') 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; -- cgit v1.2.3