Home | History | Annotate | Download | only in linux
      1 /****************************************************************************
      2  ****************************************************************************
      3  ***
      4  ***   This header was automatically generated from a Linux kernel header
      5  ***   of the same name, to make information necessary for userspace to
      6  ***   call into the kernel available to libc.  It contains only constants,
      7  ***   structures, and macros generated from the original header, and thus,
      8  ***   contains no copyrightable information.
      9  ***
     10  ****************************************************************************
     11  ****************************************************************************/
     12 #ifndef __LINUX_UFS_FS_SB_H
     13 #define __LINUX_UFS_FS_SB_H
     14 
     15 #define UFS_MAX_GROUP_LOADED 8
     16 #define UFS_CGNO_EMPTY ((unsigned)-1)
     17 
     18 struct ufs_sb_private_info;
     19 struct ufs_cg_private_info;
     20 struct ufs_csum;
     21 #define UFS_MAXCSBUFS 31
     22 
     23 struct ufs_sb_info {
     24  struct ufs_sb_private_info * s_uspi;
     25  struct ufs_csum * s_csp;
     26  unsigned s_bytesex;
     27  unsigned s_flags;
     28  struct buffer_head ** s_ucg;
     29  struct ufs_cg_private_info * s_ucpi[UFS_MAX_GROUP_LOADED];
     30  unsigned s_cgno[UFS_MAX_GROUP_LOADED];
     31  unsigned short s_cg_loaded;
     32  unsigned s_mount_opt;
     33 };
     34 
     35 #endif
     36