Searched refs:hdr_size (Results 1 – 1 of 1) sorted by relevance
/fs/xfs/ |
D | xfs_attr_remote.c | 249 int hdr_size = 0; in xfs_attr_rmtval_copyout() local 262 hdr_size = sizeof(struct xfs_attr3_rmt_hdr); in xfs_attr_rmtval_copyout() 265 memcpy(*dst, src + hdr_size, byte_cnt); in xfs_attr_rmtval_copyout() 296 int hdr_size; in xfs_attr_rmtval_copyin() local 300 hdr_size = xfs_attr3_rmt_hdr_set(mp, dst, ino, *offset, in xfs_attr_rmtval_copyin() 303 memcpy(dst + hdr_size, *src, byte_cnt); in xfs_attr_rmtval_copyin() 309 if (byte_cnt + hdr_size < XFS_LBSIZE(mp)) { in xfs_attr_rmtval_copyin() 312 memset(dst + hdr_size + byte_cnt, 0, in xfs_attr_rmtval_copyin() 313 XFS_LBSIZE(mp) - hdr_size - byte_cnt); in xfs_attr_rmtval_copyin()
|