root/include/asm-mips/statfs.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef __ASM_MIPS_STATFS_H
   2 #define __ASM_MIPS_STATFS_H
   3 
   4 typedef struct {
   5         long    val[2];
   6 } fsid_t;
   7 
   8 struct statfs {
   9         long    f_type;
  10 #define f_fstyp f_type
  11         long    f_bsize;
  12         long    f_frsize;       /* Fragment size - unsupported */
  13         long    f_blocks;
  14         long    f_bfree;
  15         long    f_files;
  16         long    f_ffree;
  17 
  18         /* Linux specials */
  19         long    f_bavail;
  20         fsid_t  f_fsid;
  21         long    f_namelen;
  22         long    f_spare[6];
  23 };
  24 
  25 #endif /* __ASM_MIPS_STATFS_H */

/* [previous][next][first][last][top][bottom][index][help] */