lib: fs: add library for implementing a filesystem service

This commit is contained in:
2026-03-06 20:17:23 +00:00
parent c4fd252f86
commit 5658e27445
15 changed files with 1506 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#ifndef FS_INODE_H_
#define FS_INODE_H_
struct fs_inode;
struct fs_dentry;
struct fs_superblock;
struct fs_inode_ops {
int (*i_lookup)(struct fs_inode *, struct fs_dentry *);
};
struct fs_inode {
struct fs_superblock *i_sb;
const struct fs_inode_ops *i_ops;
};
#endif