[BACK]Return to msdosfsmount.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / fs / msdosfs

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/fs/msdosfs/msdosfsmount.h between version 1.8 and 1.9

version 1.8, 2005/08/30 18:49:19 version 1.9, 2005/09/23 12:10:32
Line 52 
Line 52 
  */   */
 struct msdosfs_args {  struct msdosfs_args {
         char    *fspec;         /* blocks special holding the fs to mount */          char    *fspec;         /* blocks special holding the fs to mount */
         struct  export_args export;     /* network export information */          struct  compat_export_args _pad1; /* compat with old userland tools */
         uid_t   uid;            /* uid that owns msdosfs files */          uid_t   uid;            /* uid that owns msdosfs files */
         gid_t   gid;            /* gid that owns msdosfs files */          gid_t   gid;            /* gid that owns msdosfs files */
         mode_t  mask;           /* mask to be applied for msdosfs perms */          mode_t  mask;           /* mask to be applied for msdosfs perms */
Line 130  struct msdosfsmount {
Line 130  struct msdosfsmount {
         u_int pm_curfat;        /* current fat for FAT32 (0 otherwise) */          u_int pm_curfat;        /* current fat for FAT32 (0 otherwise) */
         u_int *pm_inusemap;     /* ptr to bitmap of in-use clusters */          u_int *pm_inusemap;     /* ptr to bitmap of in-use clusters */
         u_int pm_flags;         /* see below */          u_int pm_flags;         /* see below */
         struct netexport pm_export;     /* export information */  
 };  };
 /* Byte offset in FAT on filesystem pmp, cluster cn */  /* Byte offset in FAT on filesystem pmp, cluster cn */
 #define FATOFS(pmp, cn) ((cn) * (pmp)->pm_fatmult / (pmp)->pm_fatdiv)  #define FATOFS(pmp, cn) ((cn) * (pmp)->pm_fatmult / (pmp)->pm_fatdiv)

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

CVSweb <webmaster@jp.NetBSD.org>