diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-15 12:04:46 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-15 12:04:46 -0400 |
commit | 81e963b81a99f6b1176b2e316308cebe5f86d3c2 (patch) | |
tree | 11345a59824c10185643913ac7e793be5e7e40cd /sys/include | |
parent | 5338af63451bee4a6ff100ea926368875c6b0a9d (diff) |
kernel: vfs: Allow optional fs store within vnode
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/sys/vnode.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/sys/vnode.h b/sys/include/sys/vnode.h index f584356..545e38f 100644 --- a/sys/include/sys/vnode.h +++ b/sys/include/sys/vnode.h @@ -47,6 +47,7 @@ struct vnode { struct mount *mp; /* Ptr to vfs vnode is in */ struct vops *vops; struct vnode *parent; + struct fs_info *fs; /* Filesystem this vnode belongs to, can be NULL */ void *data; /* Filesystem specific data */ }; |