mirror of
https://github.com/psankar/simplefs.git
synced 2025-07-31 01:44:21 +02:00
12 lines
231 B
C
12 lines
231 B
C
#include <simple.h>
|
|
|
|
static inline struct simplefs_super_block *SIMPLEFS_SB(struct super_block *sb)
|
|
{
|
|
return sb->s_fs_info;
|
|
}
|
|
|
|
static inline struct simplefs_inode *SIMPLEFS_INODE(struct inode *inode)
|
|
{
|
|
return inode->i_private;
|
|
}
|