drm/i915: Nul-terminate legacy debug string
Make sure that when we don't have any scheduler attributes for the request, the string is terminated. Fixes:247870ac8e("drm/i915: Build request info on stack before printk") Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20180517152824.11619-1-chris@chris-wilson.co.uk (cherry picked from commit96d4f03c20) Signed-off-by: Jani Nikula <jani.nikula@intel.com>
This commit is contained in:
committed by
Jani Nikula
parent
315852b422
commit
dd166fbd8d
@@ -1114,7 +1114,7 @@ static void print_request(struct drm_printer *m,
|
|||||||
const char *prefix)
|
const char *prefix)
|
||||||
{
|
{
|
||||||
const char *name = rq->fence.ops->get_timeline_name(&rq->fence);
|
const char *name = rq->fence.ops->get_timeline_name(&rq->fence);
|
||||||
char buf[80];
|
char buf[80] = "";
|
||||||
int x = 0;
|
int x = 0;
|
||||||
|
|
||||||
x = print_sched_attr(rq->i915, &rq->sched.attr, buf, x, sizeof(buf));
|
x = print_sched_attr(rq->i915, &rq->sched.attr, buf, x, sizeof(buf));
|
||||||
|
|||||||
Reference in New Issue
Block a user