Commit 412fa1f0 authored by Tvrtko Ursulin's avatar Tvrtko Ursulin

drm/i915/selftests: Add some missing error propagation

Add some missing error propagation in live_parallel_switch.

To avoid needlessly burdening the various backport processes, note I am
not marking it as a fix against any patches and not copying stable since
it is debug/selftests only code.
Signed-off-by: default avatarTvrtko Ursulin <tvrtko.ursulin@intel.com>
Reported-by: default avatarDan Carpenter <dan.carpenter@linaro.org>
Cc: Andi Shyti <andi.shyti@linux.intel.com>
Reviewed-by: default avatarAndi Shyti <andi.shyti@linux.intel.com>
Fixes: 50d16d44 ("drm/i915/selftests: Exercise context switching in parallel")
Fixes: 6407cf53 ("drm/i915/selftests: Stop using kthread_stop()")
Link: https://patchwork.freedesktop.org/patch/msgid/20230605131135.396854-1-tvrtko.ursulin@linux.intel.com
parent e894b724
...@@ -348,8 +348,10 @@ static int live_parallel_switch(void *arg) ...@@ -348,8 +348,10 @@ static int live_parallel_switch(void *arg)
continue; continue;
ce = intel_context_create(data[m].ce[0]->engine); ce = intel_context_create(data[m].ce[0]->engine);
if (IS_ERR(ce)) if (IS_ERR(ce)) {
err = PTR_ERR(ce);
goto out; goto out;
}
err = intel_context_pin(ce); err = intel_context_pin(ce);
if (err) { if (err) {
...@@ -369,8 +371,10 @@ static int live_parallel_switch(void *arg) ...@@ -369,8 +371,10 @@ static int live_parallel_switch(void *arg)
worker = kthread_create_worker(0, "igt/parallel:%s", worker = kthread_create_worker(0, "igt/parallel:%s",
data[n].ce[0]->engine->name); data[n].ce[0]->engine->name);
if (IS_ERR(worker)) if (IS_ERR(worker)) {
err = PTR_ERR(worker);
goto out; goto out;
}
data[n].worker = worker; data[n].worker = worker;
} }
...@@ -399,8 +403,10 @@ static int live_parallel_switch(void *arg) ...@@ -399,8 +403,10 @@ static int live_parallel_switch(void *arg)
} }
} }
if (igt_live_test_end(&t)) if (igt_live_test_end(&t)) {
err = -EIO; err = err ?: -EIO;
break;
}
} }
out: out:
......
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