diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-21 19:35:57 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-21 19:35:57 -0400 |
commit | 3f2376d3260ea77beb6601059f12cf47f131d9e4 (patch) | |
tree | a92142a87e9a6812df4339f3eeb153a304989119 /src/sys/include/os | |
parent | eb2f777e0c1bd727b6064d5f0623790ca341d6df (diff) |
sys: vnode: "driver" -> "filesystem"
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/include/os')
-rw-r--r-- | src/sys/include/os/vnode.h | 8 |
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; |