[BACK]Return to ufsmount.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / ufs / ufs

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

Diff for /src/sys/ufs/ufs/ufsmount.h between version 1.22 and 1.23

version 1.22, 2005/09/27 06:48:16 version 1.23, 2005/09/27 06:48:56
Line 102  struct ufsmount {
Line 102  struct ufsmount {
         int     um_maxsymlinklen;          int     um_maxsymlinklen;
         int     um_dirblksiz;          int     um_dirblksiz;
         u_int64_t um_maxfilesize;          u_int64_t um_maxfilesize;
   
           const struct ufs_ops *um_ops;
   };
   
   struct ufs_ops {
           void (*uo_itimes)(struct inode *ip, const struct timespec *,
               const struct timespec *, const struct timespec *);
 };  };
   
   #define UFS_ITIMES(vp, acc, mod, cre) \
           (*VFSTOUFS((vp)->v_mount)->um_ops->uo_itimes)((ip), (acc), (mod), (cre))
   
 /* UFS-specific flags */  /* UFS-specific flags */
 #define UFS_NEEDSWAP    0x01    /* filesystem metadata need byte-swapping */  #define UFS_NEEDSWAP    0x01    /* filesystem metadata need byte-swapping */
 #define UFS_ISAPPLEUFS  0x02    /* filesystem is Apple UFS */  #define UFS_ISAPPLEUFS  0x02    /* filesystem is Apple UFS */

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23

CVSweb <webmaster@jp.NetBSD.org>