repo.or.cz
/
linux-2.6
/
linux-acpi-2.6
/
ibm-acpi-2.6.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
HID: magicmouse: Correct parsing of large X and Y motions.
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git]
/
include
/
linux
/
statfs.h
blob
b34cc829f98d7b583f3eec8f803d3dc02c87cb4f
1
#ifndef _LINUX_STATFS_H
2
#define _LINUX_STATFS_H
3
4
#include <linux/types.h>
5
6
#include <asm/statfs.h>
7
8
struct
kstatfs
{
9
long
f_type
;
10
long
f_bsize
;
11
u64 f_blocks
;
12
u64 f_bfree
;
13
u64 f_bavail
;
14
u64 f_files
;
15
u64 f_ffree
;
16
__kernel_fsid_t f_fsid
;
17
long
f_namelen
;
18
long
f_frsize
;
19
long
f_spare
[
5
];
20
};
21
22
#endif