Lines Matching refs:attrdp
254 xfs_attrd_item_free(struct xfs_attrd_log_item *attrdp)
256 kmem_free(attrdp->attrd_item.li_lv_shadow);
257 kmem_cache_free(xfs_attrd_cache, attrdp);
280 struct xfs_attrd_log_item *attrdp = ATTRD_ITEM(lip);
283 attrdp->attrd_format.alfd_type = XFS_LI_ATTRD;
284 attrdp->attrd_format.alfd_size = 1;
287 &attrdp->attrd_format,
300 struct xfs_attrd_log_item *attrdp = ATTRD_ITEM(lip);
302 xfs_attri_release(attrdp->attrd_attrip);
303 xfs_attrd_item_free(attrdp);
322 struct xfs_attrd_log_item *attrdp)
348 if (attrdp)
349 set_bit(XFS_LI_DIRTY, &attrdp->attrd_item.li_flags);
668 struct xfs_attrd_log_item *attrdp;
678 attrdp = xfs_trans_get_attrd(tp, old_attrip);
679 set_bit(XFS_LI_DIRTY, &attrdp->attrd_item.li_flags);
789 struct xfs_attrd_log_item *attrdp;
793 attrdp = kmem_cache_zalloc(xfs_attrd_cache, GFP_NOFS | __GFP_NOFAIL);
795 xfs_log_item_init(tp->t_mountp, &attrdp->attrd_item, XFS_LI_ATTRD,
797 attrdp->attrd_attrip = attrip;
798 attrdp->attrd_format.alfd_alf_id = attrip->attri_format.alfi_id;
800 xfs_trans_add_item(tp, &attrdp->attrd_item);
801 return attrdp;