Searched refs:di_forkoff (Results 1 - 7 of 7) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/xfs/
H A Dxfs_dinode.h63 __u8 di_forkoff; /* attr fork offs, <<3 for 64b align */ member in struct:xfs_dinode
115 #define XFS_DFORK_Q(dip) ((dip)->di_forkoff != 0)
116 #define XFS_DFORK_BOFF(dip) ((int)((dip)->di_forkoff << 3))
H A Dxfs_inode.h148 __uint8_t di_forkoff; /* attr fork offs, <<3 for 64b align */ member in struct:xfs_icdinode
174 #define XFS_IFORK_Q(ip) ((ip)->i_d.di_forkoff != 0)
175 #define XFS_IFORK_BOFF(ip) ((int)((ip)->i_d.di_forkoff << 3))
H A Dxfs_attr_leaf.c113 * Returns zero if not, else the di_forkoff fork offset to be used in the
116 * di_forkoff must be 8 byte aligned, hence is stored as a >>3 value;
141 return dp->i_d.di_forkoff;
156 if (!dp->i_d.di_forkoff && dp->i_df.if_bytes >
168 if (dp->i_d.di_forkoff) {
169 if (offset < dp->i_d.di_forkoff)
172 return dp->i_d.di_forkoff;
259 dp->i_d.di_forkoff = forkoff;
309 ip->i_d.di_forkoff = 0;
372 dp->i_d.di_forkoff
[all...]
H A Dxfs_inode.c332 if (unlikely(dip->di_forkoff > ip->i_mount->m_sb.sb_inodesize)) {
336 dip->di_forkoff);
677 to->di_forkoff = from->di_forkoff;
712 to->di_forkoff = from->di_forkoff;
2109 ip->i_d.di_forkoff = 0; /* mark the attr fork not in use */
2958 if (XFS_TEST_ERROR(ip->i_d.di_forkoff > mp->m_sb.sb_inodesize,
2962 ip->i_ino, ip->i_d.di_forkoff, ip);
H A Dxfs_bmap.c3303 * Helper routine to reset inode di_forkoff field when switching
3319 if (dfl_forkoff > ip->i_d.di_forkoff) {
3320 ip->i_d.di_forkoff = dfl_forkoff;
3604 ip->i_d.di_forkoff = roundup(sizeof(xfs_dev_t), 8) >> 3;
3607 ip->i_d.di_forkoff = roundup(sizeof(uuid_t), 8) >> 3;
3612 ip->i_d.di_forkoff = xfs_attr_shortform_bytesfit(ip, size);
3613 if (!ip->i_d.di_forkoff)
3614 ip->i_d.di_forkoff = xfs_default_attroffset(ip) >> 3;
3764 * di_forkoff's fixed but probably at various positions. Therefore,
H A Dxfs_log_recover.c2431 if (unlikely(dicp->di_forkoff > mp->m_sb.sb_inodesize)) {
2437 item, dip, bp, ino, dicp->di_forkoff);
H A Dxfs_vnodeops.c879 ASSERT(ip->i_d.di_forkoff != 0);

Completed in 206 milliseconds