summaryrefslogtreecommitdiff
path: root/kernel/fs/vfs.h
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-07-01 15:29:21 +0200
committerAnton Kling <anton@kling.gg>2024-07-01 15:29:21 +0200
commitc72057ac71d5f7b4ec7175e888828053bed7e4db (patch)
tree00aa37e9364d8ed9a34d8289bb1dc27607260865 /kernel/fs/vfs.h
parente9be93974b24733f20502ce64c54b5ec749a0a3a (diff)
VFS: Move towards unifying vfs_inode_t and vfs_fd_t
There is no need for these to be seperate. They will probably move to the same struct soon.
Diffstat (limited to 'kernel/fs/vfs.h')
-rw-r--r--kernel/fs/vfs.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/fs/vfs.h b/kernel/fs/vfs.h
index 080a663..3bb7f74 100644
--- a/kernel/fs/vfs.h
+++ b/kernel/fs/vfs.h
@@ -46,7 +46,6 @@ struct vfs_fd {
struct vfs_inode {
int inode_num;
int type;
- int ref;
int (*_has_data)(vfs_inode_t *iinode);
int (*_can_write)(vfs_inode_t *iinode);
u8 is_open;