18 lines
275 B
C
18 lines
275 B
C
|
|
#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
|