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

Commit fcffb947 authored by Chris Wilson's avatar Chris Wilson Committed by Eric Anholt
Browse files

drm/i915: Report purgeable status in buffer lists.

parent fc619013
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -97,13 +97,14 @@ static int i915_gem_object_list_info(struct seq_file *m, void *data)
	{
		struct drm_gem_object *obj = obj_priv->obj;

		seq_printf(m, "    %p: %s %8zd %08x %08x %d %s",
		seq_printf(m, "    %p: %s %8zd %08x %08x %d%s%s",
			   obj,
			   get_pin_flag(obj_priv),
			   obj->size,
			   obj->read_domains, obj->write_domain,
			   obj_priv->last_rendering_seqno,
			   obj_priv->dirty ? "dirty" : "");
			   obj_priv->dirty ? " dirty" : "",
			   obj_priv->madv == I915_MADV_DONTNEED ? " purgeable" : "");

		if (obj->name)
			seq_printf(m, " (name: %d)", obj->name);