Commit f56383cb authored by Chris Wilson's avatar Chris Wilson Committed by Daniel Vetter

drm/i915: Show WT caching in debugfs

Add the missing cache-level to the describe_obj() function for debug and
error reporting.
Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 58f6e632
...@@ -324,7 +324,7 @@ struct drm_i915_error_state { ...@@ -324,7 +324,7 @@ struct drm_i915_error_state {
u32 dirty:1; u32 dirty:1;
u32 purgeable:1; u32 purgeable:1;
s32 ring:4; s32 ring:4;
u32 cache_level:2; u32 cache_level:3;
} **active_bo, **pinned_bo; } **active_bo, **pinned_bo;
u32 *active_bo_count, *pinned_bo_count; u32 *active_bo_count, *pinned_bo_count;
struct intel_overlay_error_state *overlay; struct intel_overlay_error_state *overlay;
......
...@@ -1012,6 +1012,7 @@ const char *i915_cache_level_str(int type) ...@@ -1012,6 +1012,7 @@ const char *i915_cache_level_str(int type)
case I915_CACHE_NONE: return " uncached"; case I915_CACHE_NONE: return " uncached";
case I915_CACHE_LLC: return " snooped or LLC"; case I915_CACHE_LLC: return " snooped or LLC";
case I915_CACHE_L3_LLC: return " L3+LLC"; case I915_CACHE_L3_LLC: return " L3+LLC";
case I915_CACHE_WT: return " WT";
default: return ""; default: return "";
} }
} }
......
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