Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 174653
b: refs/heads/master
c: fcffb94
h: refs/heads/master
i:
  174651: 52dc2df
v: v3
  • Loading branch information
Chris Wilson authored and Eric Anholt committed Dec 7, 2009
1 parent a52afb7 commit ba13e95
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fc61901373987ad61851ed001fe971f3ee8d96a3
refs/heads/master: fcffb947668073fd9c47da33f8e72add7f62163d
5 changes: 3 additions & 2 deletions trunk/drivers/gpu/drm/i915/i915_debugfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit ba13e95

Please sign in to comment.