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

11
lib/libfs/superblock.c Normal file
View File

@@ -0,0 +1,11 @@
#include <fs/superblock.h>
#include <stddef.h>
struct fs_inode *fs_superblock_alloc_inode(struct fs_superblock *sb)
{
if (!sb->s_ops->s_alloc_inode) {
return NULL;
}
return sb->s_ops->s_alloc_inode(sb);
}