Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 481a3d43 authored by Chris Wilson's avatar Chris Wilson Committed by Daniel Vetter
Browse files

drm/i915: Include active flag when describing objects in debugfs



Since we use obj->active as a hint in many places throughout the code,
knowing its state in debugfs is extremely useful.

Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: default avatarTvrtko Ursulin <tvrtko.ursulin@intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 8d9d5744
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -123,8 +123,9 @@ describe_obj(struct seq_file *m, struct drm_i915_gem_object *obj)
	struct i915_vma *vma;
	int pin_count = 0;

	seq_printf(m, "%pK: %s%s%s %8zdKiB %02x %02x %x %x %x%s%s%s",
	seq_printf(m, "%pK: %s%s%s%s %8zdKiB %02x %02x %x %x %x%s%s%s",
		   &obj->base,
		   obj->active ? "*" : " ",
		   get_pin_flag(obj),
		   get_tiling_flag(obj),
		   get_global_flag(obj),