You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
343 B
21 lines
343 B
20 years ago
|
#ifndef _CRAMFS_FS_SB
|
||
|
#define _CRAMFS_FS_SB
|
||
|
|
||
|
/*
|
||
|
* cramfs super-block data in memory
|
||
|
*/
|
||
|
struct cramfs_sb_info {
|
||
|
unsigned long magic;
|
||
|
unsigned long size;
|
||
|
unsigned long blocks;
|
||
|
unsigned long files;
|
||
|
unsigned long flags;
|
||
|
};
|
||
|
|
||
|
static inline struct cramfs_sb_info *CRAMFS_SB(struct super_block *sb)
|
||
|
{
|
||
|
return sb->s_fs_info;
|
||
|
}
|
||
|
|
||
|
#endif
|