Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 357973
b: refs/heads/master
c: 623f978
h: refs/heads/master
i:
  357971: 6f46ec9
v: v3
  • Loading branch information
Daniel Vetter committed Jan 20, 2013
1 parent 2bca06d commit 1a293e4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 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: b0d1232589df5575c5971224ac4cb30e7e525884
refs/heads/master: 623f9783027ef0a948205f17792c9e1fcedb61c6
10 changes: 6 additions & 4 deletions trunk/drivers/gpu/drm/i915/i915_debugfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -1367,11 +1367,12 @@ static int i915_gem_framebuffer_info(struct seq_file *m, void *data)
ifbdev = dev_priv->fbdev;
fb = to_intel_framebuffer(ifbdev->helper.fb);

seq_printf(m, "fbcon size: %d x %d, depth %d, %d bpp, obj ",
seq_printf(m, "fbcon size: %d x %d, depth %d, %d bpp, refcount %d, obj ",
fb->base.width,
fb->base.height,
fb->base.depth,
fb->base.bits_per_pixel);
fb->base.bits_per_pixel,
atomic_read(&fb->base.refcount.refcount));
describe_obj(m, fb->obj);
seq_printf(m, "\n");
mutex_unlock(&dev->mode_config.mutex);
Expand All @@ -1381,11 +1382,12 @@ static int i915_gem_framebuffer_info(struct seq_file *m, void *data)
if (&fb->base == ifbdev->helper.fb)
continue;

seq_printf(m, "user size: %d x %d, depth %d, %d bpp, obj ",
seq_printf(m, "user size: %d x %d, depth %d, %d bpp, refcount %d, obj ",
fb->base.width,
fb->base.height,
fb->base.depth,
fb->base.bits_per_pixel);
fb->base.bits_per_pixel,
atomic_read(&fb->base.refcount.refcount));
describe_obj(m, fb->obj);
seq_printf(m, "\n");
}
Expand Down

0 comments on commit 1a293e4

Please sign in to comment.