[Intel-gfx] [PATCH] drm/i915: Initialise mmaped_count for i915_gem_object_info
Mika Kuoppala
mika.kuoppala at linux.intel.com
Mon Aug 15 12:48:16 UTC 2016
Chris Wilson <chris at chris-wilson.co.uk> writes:
> Reported-by: 0day kbuild test robot
> Fixes: 2bd160a131ac ("drm/i915: Reduce i915_gem_objects to only show...")
> Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>
Reviewed-by: Mika Kuoppala <mika.kuoppala at intel.com>
> ---
> drivers/gpu/drm/i915/i915_debugfs.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c
> index f612d3f18c69..81fabc36ce5a 100644
> --- a/drivers/gpu/drm/i915/i915_debugfs.c
> +++ b/drivers/gpu/drm/i915/i915_debugfs.c
> @@ -403,7 +403,9 @@ static int i915_gem_object_info(struct seq_file *m, void* data)
> dev_priv->mm.object_count,
> dev_priv->mm.object_memory);
>
> - size = count = purgeable_size = purgeable_count = 0;
> + size = count = 0;
> + mapped_size = mapped_count = 0;
> + purgeable_size = purgeable_count = 0;
> list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
> size += obj->base.size;
> ++count;
> --
> 2.8.1
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
More information about the Intel-gfx
mailing list