Commit 429d56a6 authored by Matthew Auld's avatar Matthew Auld Committed by Rodrigo Vivi

drm/xe/ct: fix resv_space print

Actually print the info.resv_space.
Signed-off-by: default avatarMatthew Auld <matthew.auld@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: default avatarMatthew Brost <matthew.brost@intel.com>
Signed-off-by: default avatarRodrigo Vivi <rodrigo.vivi@intel.com>
parent 9e952635
...@@ -1180,7 +1180,7 @@ static void guc_ctb_snapshot_print(struct guc_ctb_snapshot *snapshot, ...@@ -1180,7 +1180,7 @@ static void guc_ctb_snapshot_print(struct guc_ctb_snapshot *snapshot,
u32 head, tail; u32 head, tail;
drm_printf(p, "\tsize: %d\n", snapshot->info.size); drm_printf(p, "\tsize: %d\n", snapshot->info.size);
drm_printf(p, "\tresv_space: %d\n", snapshot->info.space); drm_printf(p, "\tresv_space: %d\n", snapshot->info.resv_space);
drm_printf(p, "\thead: %d\n", snapshot->info.head); drm_printf(p, "\thead: %d\n", snapshot->info.head);
drm_printf(p, "\ttail: %d\n", snapshot->info.tail); drm_printf(p, "\ttail: %d\n", snapshot->info.tail);
drm_printf(p, "\tspace: %d\n", snapshot->info.space); drm_printf(p, "\tspace: %d\n", snapshot->info.space);
......
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