12 lines
212 B
C
12 lines
212 B
C
|
|
#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);
|
||
|
|
}
|