|
@@ -1766,11 +1766,12 @@ static int i915_gem_framebuffer_info(struct seq_file *m, void *data)
|
|
ifbdev = dev_priv->fbdev;
|
|
ifbdev = dev_priv->fbdev;
|
|
fb = to_intel_framebuffer(ifbdev->helper.fb);
|
|
fb = to_intel_framebuffer(ifbdev->helper.fb);
|
|
|
|
|
|
- seq_printf(m, "fbcon size: %d x %d, depth %d, %d bpp, refcount %d, obj ",
|
|
|
|
|
|
+ seq_printf(m, "fbcon size: %d x %d, depth %d, %d bpp, modifier 0x%llx, refcount %d, obj ",
|
|
fb->base.width,
|
|
fb->base.width,
|
|
fb->base.height,
|
|
fb->base.height,
|
|
fb->base.depth,
|
|
fb->base.depth,
|
|
fb->base.bits_per_pixel,
|
|
fb->base.bits_per_pixel,
|
|
|
|
+ fb->base.modifier[0],
|
|
atomic_read(&fb->base.refcount.refcount));
|
|
atomic_read(&fb->base.refcount.refcount));
|
|
describe_obj(m, fb->obj);
|
|
describe_obj(m, fb->obj);
|
|
seq_putc(m, '\n');
|
|
seq_putc(m, '\n');
|
|
@@ -1781,11 +1782,12 @@ static int i915_gem_framebuffer_info(struct seq_file *m, void *data)
|
|
if (ifbdev && &fb->base == ifbdev->helper.fb)
|
|
if (ifbdev && &fb->base == ifbdev->helper.fb)
|
|
continue;
|
|
continue;
|
|
|
|
|
|
- seq_printf(m, "user size: %d x %d, depth %d, %d bpp, refcount %d, obj ",
|
|
|
|
|
|
+ seq_printf(m, "user size: %d x %d, depth %d, %d bpp, modifier 0x%llx, refcount %d, obj ",
|
|
fb->base.width,
|
|
fb->base.width,
|
|
fb->base.height,
|
|
fb->base.height,
|
|
fb->base.depth,
|
|
fb->base.depth,
|
|
fb->base.bits_per_pixel,
|
|
fb->base.bits_per_pixel,
|
|
|
|
+ fb->base.modifier[0],
|
|
atomic_read(&fb->base.refcount.refcount));
|
|
atomic_read(&fb->base.refcount.refcount));
|
|
describe_obj(m, fb->obj);
|
|
describe_obj(m, fb->obj);
|
|
seq_putc(m, '\n');
|
|
seq_putc(m, '\n');
|