Commit f0ca820c authored by Chris Wilson's avatar Chris Wilson

drm/i915/gt: Always call kref_init for the timeline

Always initialise the refcount, even for the embedded timelines inside
mock devices.
Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: default avatarMatthew Auld <matthew.auld@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190625233349.32371-2-chris@chris-wilson.co.uk
parent b38565fa
...@@ -210,8 +210,11 @@ int intel_timeline_init(struct intel_timeline *timeline, ...@@ -210,8 +210,11 @@ int intel_timeline_init(struct intel_timeline *timeline,
{ {
void *vaddr; void *vaddr;
kref_init(&timeline->kref);
timeline->gt = gt; timeline->gt = gt;
timeline->pin_count = 0; timeline->pin_count = 0;
timeline->has_initial_breadcrumb = !hwsp; timeline->has_initial_breadcrumb = !hwsp;
timeline->hwsp_cacheline = NULL; timeline->hwsp_cacheline = NULL;
...@@ -357,8 +360,6 @@ intel_timeline_create(struct intel_gt *gt, struct i915_vma *global_hwsp) ...@@ -357,8 +360,6 @@ intel_timeline_create(struct intel_gt *gt, struct i915_vma *global_hwsp)
return ERR_PTR(err); return ERR_PTR(err);
} }
kref_init(&timeline->kref);
return timeline; return timeline;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment