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.
23 lines
330 B
23 lines
330 B
20 years ago
|
#ifndef _LINUX_STATFS_H
|
||
|
#define _LINUX_STATFS_H
|
||
|
|
||
|
#include <linux/types.h>
|
||
|
|
||
|
#include <asm/statfs.h>
|
||
|
|
||
|
struct kstatfs {
|
||
|
long f_type;
|
||
|
long f_bsize;
|
||
|
sector_t f_blocks;
|
||
|
sector_t f_bfree;
|
||
|
sector_t f_bavail;
|
||
|
sector_t f_files;
|
||
|
sector_t f_ffree;
|
||
|
__kernel_fsid_t f_fsid;
|
||
|
long f_namelen;
|
||
|
long f_frsize;
|
||
|
long f_spare[5];
|
||
|
};
|
||
|
|
||
|
#endif
|