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
Optimize andes_clear_page() and andes_copy_page() with prefetch
[linux-2.6/linux-mips.git]
/
include
/
asm-arm
/
statfs.h
blob
a1eba73ded99123c861f30db83f7fcfcb8240dbc
1
#ifndef _ASMARM_STATFS_H
2
#define _ASMARM_STATFS_H
3
4
#ifndef __KERNEL_STRICT_NAMES
5
6
#include <linux/types.h>
7
8
typedef
__kernel_fsid_t fsid_t
;
9
10
#endif
11
12
struct
statfs
{
13
long
f_type
;
14
long
f_bsize
;
15
long
f_blocks
;
16
long
f_bfree
;
17
long
f_bavail
;
18
long
f_files
;
19
long
f_ffree
;
20
__kernel_fsid_t f_fsid
;
21
long
f_namelen
;
22
long
f_spare
[
6
];
23
};
24
25
#endif