Lines Matching refs:cudp
190 struct xfs_cud_log_item *cudp = CUD_ITEM(lip); in xfs_cud_item_format() local
193 cudp->cud_format.cud_type = XFS_LI_CUD; in xfs_cud_item_format()
194 cudp->cud_format.cud_size = 1; in xfs_cud_item_format()
196 xlog_copy_iovec(lv, &vecp, XLOG_REG_TYPE_CUD_FORMAT, &cudp->cud_format, in xfs_cud_item_format()
209 struct xfs_cud_log_item *cudp = CUD_ITEM(lip); in xfs_cud_item_release() local
211 xfs_cui_release(cudp->cud_cuip); in xfs_cud_item_release()
212 kvfree(cudp->cud_item.li_lv_shadow); in xfs_cud_item_release()
213 kmem_cache_free(xfs_cud_cache, cudp); in xfs_cud_item_release()
312 struct xfs_cud_log_item *cudp; in xfs_refcount_update_create_done() local
314 cudp = kmem_cache_zalloc(xfs_cud_cache, GFP_KERNEL | __GFP_NOFAIL); in xfs_refcount_update_create_done()
315 xfs_log_item_init(tp->t_mountp, &cudp->cud_item, XFS_LI_CUD, in xfs_refcount_update_create_done()
317 cudp->cud_cuip = cuip; in xfs_refcount_update_create_done()
318 cudp->cud_format.cud_cui_id = cuip->cui_format.cui_id; in xfs_refcount_update_create_done()
320 return &cudp->cud_item; in xfs_refcount_update_create_done()