Lines Matching refs:attrdp
301 xfs_attrd_item_free(struct xfs_attrd_log_item *attrdp) in xfs_attrd_item_free() argument
303 kvfree(attrdp->attrd_item.li_lv_shadow); in xfs_attrd_item_free()
304 kmem_cache_free(xfs_attrd_cache, attrdp); in xfs_attrd_item_free()
327 struct xfs_attrd_log_item *attrdp = ATTRD_ITEM(lip); in xfs_attrd_item_format() local
330 attrdp->attrd_format.alfd_type = XFS_LI_ATTRD; in xfs_attrd_item_format()
331 attrdp->attrd_format.alfd_size = 1; in xfs_attrd_item_format()
334 &attrdp->attrd_format, in xfs_attrd_item_format()
347 struct xfs_attrd_log_item *attrdp = ATTRD_ITEM(lip); in xfs_attrd_item_release() local
349 xfs_attri_release(attrdp->attrd_attrip); in xfs_attrd_item_release()
350 xfs_attrd_item_free(attrdp); in xfs_attrd_item_release()
857 struct xfs_attrd_log_item *attrdp; in xfs_attr_create_done() local
861 attrdp = kmem_cache_zalloc(xfs_attrd_cache, GFP_KERNEL | __GFP_NOFAIL); in xfs_attr_create_done()
863 xfs_log_item_init(tp->t_mountp, &attrdp->attrd_item, XFS_LI_ATTRD, in xfs_attr_create_done()
865 attrdp->attrd_attrip = attrip; in xfs_attr_create_done()
866 attrdp->attrd_format.alfd_alf_id = attrip->attri_format.alfi_id; in xfs_attr_create_done()
868 return &attrdp->attrd_item; in xfs_attr_create_done()