Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0f43702a authored by fred gao's avatar fred gao Committed by Zhenyu Wang
Browse files

drm/i915/gvt: Refine error handling in dispatch_workload



When an error occurs in dispatch_workload, this patch is to do the
proper cleanup and rollback to the original states before the workload
is abandoned.

v2:
- split the mixed several error paths for better review. (Zhenyu)

v3:
- original PTR_ERR(cs) is good and code cleanup. (Zhenyu)

v4:
- reuse the existing i915_add_request for error handling. (Zhenyu)

v5:
- remove the duplicate error handling release_shadow_wa_ctx and
  move the engine->context_unpin upper. (Zhenyu)

v6:
- keep the old label "out". (Zhenyu)

Signed-off-by: default avatarfred gao <fred.gao@intel.com>
Signed-off-by: default avatarZhenyu Wang <zhenyuw@linux.intel.com>
parent 46b441ef
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -342,9 +342,11 @@ static int dispatch_workload(struct intel_vgpu_workload *workload)

	if (workload->prepare) {
		ret = workload->prepare(workload);
		if (ret)
		if (ret) {
			engine->context_unpin(engine, shadow_ctx);
			goto out;
		}
	}

out:
	if (ret)