diff options
author | Greg Kroah-Hartman <[email protected]> | 2023-02-06 13:44:22 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2023-02-06 13:46:05 +0100 |
commit | 25746a3fa2dad79a6dfc42522b5bb38b4bdec844 (patch) | |
tree | 99f2fd1c00345f50c95872956d2da51a22f6f681 | |
parent | fb6211f1584aad12c267c3333273f42f69438ced (diff) |
drm/i915: fix up merge with usb-next branch
In the manual fixup of the list_count_nodes() logic in
drivers/gpu/drm/i915/gt/intel_execlists_submission.c in the usb-next
branch, I missed that the print modifier was incorrect, resulting in
loads of build warnings on 32bit systems.
Fix this up by using "%su" instead of "%lu".
Reported-by: kernel test robot <[email protected]>
Fixes: 924fb3ec50f5 ("Merge 6.2-rc7 into usb-next")
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/gpu/drm/i915/gt/intel_execlists_submission.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/gt/intel_execlists_submission.c b/drivers/gpu/drm/i915/gt/intel_execlists_submission.c index 178ff20648c5..ee71cde2ffc6 100644 --- a/drivers/gpu/drm/i915/gt/intel_execlists_submission.c +++ b/drivers/gpu/drm/i915/gt/intel_execlists_submission.c @@ -4158,7 +4158,7 @@ void intel_execlists_dump_active_requests(struct intel_engine_cs *engine, intel_engine_dump_active_requests(&engine->sched_engine->requests, hung_rq, m); - drm_printf(m, "\tOn hold?: %lu\n", + drm_printf(m, "\tOn hold?: %zu\n", list_count_nodes(&engine->sched_engine->hold)); spin_unlock_irqrestore(&engine->sched_engine->lock, flags); |