repo.or.cz
/
linux-2.6
/
linux-mips.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
usb: navman kill urb cleanup
[linux-2.6/linux-mips.git]
/
include
/
linux
/
cramfs_fs_sb.h
blob
8390693568fd9aa333decc319fd6e69f5cf35816
1
#ifndef _CRAMFS_FS_SB
2
#define _CRAMFS_FS_SB
3
4
/*
5
* cramfs super-block data in memory
6
*/
7
struct
cramfs_sb_info
{
8
unsigned long
magic
;
9
unsigned long
size
;
10
unsigned long
blocks
;
11
unsigned long
files
;
12
unsigned long
flags
;
13
};
14
15
static
inline
struct
cramfs_sb_info
*
CRAMFS_SB
(
struct
super_block
*
sb
)
16
{
17
return
sb
->
s_fs_info
;
18
}
19
20
#endif