Commit 8f57f295 authored by John Harrison's avatar John Harrison Committed by Matt Roper

drm/i915/selftests: Allow for larger engine counts

Increasing the engine count causes a couple of local array variables
to exceed the kernel stack limit. So make them dynamic allocations
instead.
Signed-off-by: default avatarJohn Harrison <John.C.Harrison@Intel.com>
Signed-off-by: default avatarDaniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Signed-off-by: default avatarMatt Roper <matthew.d.roper@intel.com>
Reviewed-by: default avatarLucas De Marchi <lucas.demarchi@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210721223043.834562-8-matthew.d.roper@intel.com
parent 442e049a
...@@ -3561,12 +3561,16 @@ static int smoke_crescendo(struct preempt_smoke *smoke, unsigned int flags) ...@@ -3561,12 +3561,16 @@ static int smoke_crescendo(struct preempt_smoke *smoke, unsigned int flags)
#define BATCH BIT(0) #define BATCH BIT(0)
{ {
struct task_struct *tsk[I915_NUM_ENGINES] = {}; struct task_struct *tsk[I915_NUM_ENGINES] = {};
struct preempt_smoke arg[I915_NUM_ENGINES]; struct preempt_smoke *arg;
struct intel_engine_cs *engine; struct intel_engine_cs *engine;
enum intel_engine_id id; enum intel_engine_id id;
unsigned long count; unsigned long count;
int err = 0; int err = 0;
arg = kmalloc_array(I915_NUM_ENGINES, sizeof(*arg), GFP_KERNEL);
if (!arg)
return -ENOMEM;
for_each_engine(engine, smoke->gt, id) { for_each_engine(engine, smoke->gt, id) {
arg[id] = *smoke; arg[id] = *smoke;
arg[id].engine = engine; arg[id].engine = engine;
...@@ -3574,7 +3578,7 @@ static int smoke_crescendo(struct preempt_smoke *smoke, unsigned int flags) ...@@ -3574,7 +3578,7 @@ static int smoke_crescendo(struct preempt_smoke *smoke, unsigned int flags)
arg[id].batch = NULL; arg[id].batch = NULL;
arg[id].count = 0; arg[id].count = 0;
tsk[id] = kthread_run(smoke_crescendo_thread, &arg, tsk[id] = kthread_run(smoke_crescendo_thread, arg,
"igt/smoke:%d", id); "igt/smoke:%d", id);
if (IS_ERR(tsk[id])) { if (IS_ERR(tsk[id])) {
err = PTR_ERR(tsk[id]); err = PTR_ERR(tsk[id]);
...@@ -3603,6 +3607,8 @@ static int smoke_crescendo(struct preempt_smoke *smoke, unsigned int flags) ...@@ -3603,6 +3607,8 @@ static int smoke_crescendo(struct preempt_smoke *smoke, unsigned int flags)
pr_info("Submitted %lu crescendo:%x requests across %d engines and %d contexts\n", pr_info("Submitted %lu crescendo:%x requests across %d engines and %d contexts\n",
count, flags, smoke->gt->info.num_engines, smoke->ncontext); count, flags, smoke->gt->info.num_engines, smoke->ncontext);
kfree(arg);
return 0; return 0;
} }
......
...@@ -1175,31 +1175,36 @@ live_gpu_reset_workarounds(void *arg) ...@@ -1175,31 +1175,36 @@ live_gpu_reset_workarounds(void *arg)
{ {
struct intel_gt *gt = arg; struct intel_gt *gt = arg;
intel_wakeref_t wakeref; intel_wakeref_t wakeref;
struct wa_lists lists; struct wa_lists *lists;
bool ok; bool ok;
if (!intel_has_gpu_reset(gt)) if (!intel_has_gpu_reset(gt))
return 0; return 0;
lists = kzalloc(sizeof(*lists), GFP_KERNEL);
if (!lists)
return -ENOMEM;
pr_info("Verifying after GPU reset...\n"); pr_info("Verifying after GPU reset...\n");
igt_global_reset_lock(gt); igt_global_reset_lock(gt);
wakeref = intel_runtime_pm_get(gt->uncore->rpm); wakeref = intel_runtime_pm_get(gt->uncore->rpm);
reference_lists_init(gt, &lists); reference_lists_init(gt, lists);
ok = verify_wa_lists(gt, &lists, "before reset"); ok = verify_wa_lists(gt, lists, "before reset");
if (!ok) if (!ok)
goto out; goto out;
intel_gt_reset(gt, ALL_ENGINES, "live_workarounds"); intel_gt_reset(gt, ALL_ENGINES, "live_workarounds");
ok = verify_wa_lists(gt, &lists, "after reset"); ok = verify_wa_lists(gt, lists, "after reset");
out: out:
reference_lists_fini(gt, &lists); reference_lists_fini(gt, lists);
intel_runtime_pm_put(gt->uncore->rpm, wakeref); intel_runtime_pm_put(gt->uncore->rpm, wakeref);
igt_global_reset_unlock(gt); igt_global_reset_unlock(gt);
kfree(lists);
return ok ? 0 : -ESRCH; return ok ? 0 : -ESRCH;
} }
...@@ -1214,16 +1219,20 @@ live_engine_reset_workarounds(void *arg) ...@@ -1214,16 +1219,20 @@ live_engine_reset_workarounds(void *arg)
struct igt_spinner spin; struct igt_spinner spin;
struct i915_request *rq; struct i915_request *rq;
intel_wakeref_t wakeref; intel_wakeref_t wakeref;
struct wa_lists lists; struct wa_lists *lists;
int ret = 0; int ret = 0;
if (!intel_has_reset_engine(gt)) if (!intel_has_reset_engine(gt))
return 0; return 0;
lists = kzalloc(sizeof(*lists), GFP_KERNEL);
if (!lists)
return -ENOMEM;
igt_global_reset_lock(gt); igt_global_reset_lock(gt);
wakeref = intel_runtime_pm_get(gt->uncore->rpm); wakeref = intel_runtime_pm_get(gt->uncore->rpm);
reference_lists_init(gt, &lists); reference_lists_init(gt, lists);
for_each_engine(engine, gt, id) { for_each_engine(engine, gt, id) {
bool ok; bool ok;
...@@ -1235,7 +1244,7 @@ live_engine_reset_workarounds(void *arg) ...@@ -1235,7 +1244,7 @@ live_engine_reset_workarounds(void *arg)
break; break;
} }
ok = verify_wa_lists(gt, &lists, "before reset"); ok = verify_wa_lists(gt, lists, "before reset");
if (!ok) { if (!ok) {
ret = -ESRCH; ret = -ESRCH;
goto err; goto err;
...@@ -1247,7 +1256,7 @@ live_engine_reset_workarounds(void *arg) ...@@ -1247,7 +1256,7 @@ live_engine_reset_workarounds(void *arg)
goto err; goto err;
} }
ok = verify_wa_lists(gt, &lists, "after idle reset"); ok = verify_wa_lists(gt, lists, "after idle reset");
if (!ok) { if (!ok) {
ret = -ESRCH; ret = -ESRCH;
goto err; goto err;
...@@ -1282,7 +1291,7 @@ live_engine_reset_workarounds(void *arg) ...@@ -1282,7 +1291,7 @@ live_engine_reset_workarounds(void *arg)
igt_spinner_end(&spin); igt_spinner_end(&spin);
igt_spinner_fini(&spin); igt_spinner_fini(&spin);
ok = verify_wa_lists(gt, &lists, "after busy reset"); ok = verify_wa_lists(gt, lists, "after busy reset");
if (!ok) { if (!ok) {
ret = -ESRCH; ret = -ESRCH;
goto err; goto err;
...@@ -1294,9 +1303,10 @@ live_engine_reset_workarounds(void *arg) ...@@ -1294,9 +1303,10 @@ live_engine_reset_workarounds(void *arg)
break; break;
} }
reference_lists_fini(gt, &lists); reference_lists_fini(gt, lists);
intel_runtime_pm_put(gt->uncore->rpm, wakeref); intel_runtime_pm_put(gt->uncore->rpm, wakeref);
igt_global_reset_unlock(gt); igt_global_reset_unlock(gt);
kfree(lists);
igt_flush_test(gt->i915); igt_flush_test(gt->i915);
......
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