Home | History | Annotate | Download | only in sys
      1 /*
      2  * Copyright (C) 2008 The Android Open Source Project
      3  * All rights reserved.
      4  *
      5  * Redistribution and use in source and binary forms, with or without
      6  * modification, are permitted provided that the following conditions
      7  * are met:
      8  *  * Redistributions of source code must retain the above copyright
      9  *    notice, this list of conditions and the following disclaimer.
     10  *  * Redistributions in binary form must reproduce the above copyright
     11  *    notice, this list of conditions and the following disclaimer in
     12  *    the documentation and/or other materials provided with the
     13  *    distribution.
     14  *
     15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     16  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     17  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
     18  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
     19  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
     20  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     21  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
     22  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     23  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     24  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
     25  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26  * SUCH DAMAGE.
     27  */
     28 #ifndef _SYS_VFS_H_
     29 #define _SYS_VFS_H_
     30 
     31 #include <stdint.h>
     32 #include <sys/cdefs.h>
     33 #include <sys/types.h>
     34 
     35 __BEGIN_DECLS
     36 
     37 /* note: this corresponds to the kernel's statfs64 type */
     38 #ifdef __mips__
     39 struct statfs {
     40     uint32_t        f_type;
     41     uint32_t        f_bsize;
     42     uint32_t        f_frsize;
     43     uint32_t        __pad;
     44     uint64_t        f_blocks;
     45     uint64_t        f_bfree;
     46     uint64_t        f_files;
     47     uint64_t        f_ffree;
     48     uint64_t        f_bavail;
     49     __kernel_fsid_t f_fsid;
     50     uint32_t        f_namelen;
     51     uint32_t        f_spare[6];
     52 };
     53 #else
     54 struct statfs {
     55     uint32_t        f_type;
     56     uint32_t        f_bsize;
     57     uint64_t        f_blocks;
     58     uint64_t        f_bfree;
     59     uint64_t        f_bavail;
     60     uint64_t        f_files;
     61     uint64_t        f_ffree;
     62     __kernel_fsid_t f_fsid;
     63     uint32_t        f_namelen;
     64     uint32_t        f_frsize;
     65     uint32_t        f_spare[5];
     66 };
     67 #endif
     68 
     69 #define  ADFS_SUPER_MAGIC      0xadf5
     70 #define  AFFS_SUPER_MAGIC      0xADFF
     71 #define  BEFS_SUPER_MAGIC      0x42465331
     72 #define  BFS_MAGIC             0x1BADFACE
     73 #define  CIFS_MAGIC_NUMBER     0xFF534D42
     74 #define  CODA_SUPER_MAGIC      0x73757245
     75 #define  COH_SUPER_MAGIC       0x012FF7B7
     76 #define  CRAMFS_MAGIC          0x28cd3d45
     77 #define  DEVFS_SUPER_MAGIC     0x1373
     78 #define  EFS_SUPER_MAGIC       0x00414A53
     79 #define  EXT_SUPER_MAGIC       0x137D
     80 #define  EXT2_OLD_SUPER_MAGIC  0xEF51
     81 #define  EXT2_SUPER_MAGIC      0xEF53
     82 #define  EXT3_SUPER_MAGIC      0xEF53
     83 #define  HFS_SUPER_MAGIC       0x4244
     84 #define  HPFS_SUPER_MAGIC      0xF995E849
     85 #define  HUGETLBFS_MAGIC       0x958458f6
     86 #define  ISOFS_SUPER_MAGIC     0x9660
     87 #define  JFFS2_SUPER_MAGIC     0x72b6
     88 #define  JFS_SUPER_MAGIC       0x3153464a
     89 #define  MINIX_SUPER_MAGIC     0x137F /* orig. minix */
     90 #define  MINIX_SUPER_MAGIC2    0x138F /* 30 char minix */
     91 #define  MINIX2_SUPER_MAGIC    0x2468 /* minix V2 */
     92 #define  MINIX2_SUPER_MAGIC2   0x2478 /* minix V2, 30 char names */
     93 #define  MSDOS_SUPER_MAGIC     0x4d44
     94 #define  NCP_SUPER_MAGIC       0x564c
     95 #define  NFS_SUPER_MAGIC       0x6969
     96 #define  NTFS_SB_MAGIC         0x5346544e
     97 #define  OPENPROM_SUPER_MAGIC  0x9fa1
     98 #define  PROC_SUPER_MAGIC      0x9fa0
     99 #define  QNX4_SUPER_MAGIC      0x002f
    100 #define  REISERFS_SUPER_MAGIC  0x52654973
    101 #define  ROMFS_MAGIC           0x7275
    102 #define  SMB_SUPER_MAGIC       0x517B
    103 #define  SYSV2_SUPER_MAGIC     0x012FF7B6
    104 #define  SYSV4_SUPER_MAGIC     0x012FF7B5
    105 #define  TMPFS_MAGIC           0x01021994
    106 #define  UDF_SUPER_MAGIC       0x15013346
    107 #define  UFS_MAGIC             0x00011954
    108 #define  USBDEVICE_SUPER_MAGIC 0x9fa2
    109 #define  VXFS_SUPER_MAGIC      0xa501FCF5
    110 #define  XENIX_SUPER_MAGIC     0x012FF7B4
    111 #define  XFS_SUPER_MAGIC       0x58465342
    112 #define  _XIAFS_SUPER_MAGIC    0x012FD16D
    113 
    114 extern int statfs(const char *, struct statfs *);
    115 extern int fstatfs(int, struct statfs *);
    116 
    117 __END_DECLS
    118 
    119 #endif /* _SYS_VFS_H_ */
    120