Diff for /xfs-linux/xfs_inode.h between versions 1.218 and 1.219

version 1.218, 2007/03/10 02:56:10 version 1.219, 2007/03/30 04:04:14
Line 287  typedef struct xfs_inode { Line 287  typedef struct xfs_inode {
         struct xfs_inode        *i_cnext;       /* cluster hash link forward */          struct xfs_inode        *i_cnext;       /* cluster hash link forward */
         struct xfs_inode        *i_cprev;       /* cluster hash link backward */          struct xfs_inode        *i_cprev;       /* cluster hash link backward */
   
           xfs_fsize_t             i_size;         /* in-memory size */
         /* Trace buffers per inode. */          /* Trace buffers per inode. */
 #ifdef XFS_BMAP_TRACE  #ifdef XFS_BMAP_TRACE
         struct ktrace           *i_xtrace;      /* inode extent list trace */          struct ktrace           *i_xtrace;      /* inode extent list trace */
Line 305  typedef struct xfs_inode { Line 306  typedef struct xfs_inode {
 #endif  #endif
 } xfs_inode_t;  } xfs_inode_t;
   
   #define XFS_ISIZE(ip)   (((ip)->i_d.di_mode & S_IFMT) == S_IFREG) ? \
                                   (ip)->i_size : (ip)->i_d.di_size;
   
 /*  /*
  * i_flags helper functions   * i_flags helper functions

Removed from v.1.218  
changed lines
  Added in v.1.219


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>