Lines Matching refs:vma_res
1507 struct i915_vma_resource *vma_res; in reserve_gtt_with_resource() local
1511 vma_res = i915_vma_resource_alloc(); in reserve_gtt_with_resource()
1512 if (IS_ERR(vma_res)) in reserve_gtt_with_resource()
1513 return PTR_ERR(vma_res); in reserve_gtt_with_resource()
1521 i915_vma_resource_init_from_vma(vma_res, vma); in reserve_gtt_with_resource()
1522 vma->resource = vma_res; in reserve_gtt_with_resource()
1524 kfree(vma_res); in reserve_gtt_with_resource()
1688 struct i915_vma_resource *vma_res; in insert_gtt_with_resource() local
1692 vma_res = i915_vma_resource_alloc(); in insert_gtt_with_resource()
1693 if (IS_ERR(vma_res)) in insert_gtt_with_resource()
1694 return PTR_ERR(vma_res); in insert_gtt_with_resource()
1700 i915_vma_resource_init_from_vma(vma_res, vma); in insert_gtt_with_resource()
1701 vma->resource = vma_res; in insert_gtt_with_resource()
1703 kfree(vma_res); in insert_gtt_with_resource()