From: Daniel Vetter <daniel@ffwll.ch>
To: Chris Wilson <chris@chris-wilson.co.uk>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH] drm/i915: List objects allocated from stolen memory in debugfs
Date: Wed, 7 Aug 2013 23:44:20 +0200 [thread overview]
Message-ID: <20130807214420.GE22035@phenom.ffwll.local> (raw)
In-Reply-To: <1375896654-2318-1-git-send-email-chris@chris-wilson.co.uk>
On Wed, Aug 07, 2013 at 06:30:54PM +0100, Chris Wilson wrote:
> I was curious as to what objects were currently allocated from stolen
> memory, and so exported it from debugfs.
>
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
I liike this, but since I've just merged Ben's exec_list vma conversion it
doesn't apply any more cleanly. Can you please rebase and resend?
-Daniel
> ---
> drivers/gpu/drm/i915/i915_debugfs.c | 63 +++++++++++++++++++++++++++++++++++++
> 1 file changed, 63 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c
> index 07f5896..4243b63 100644
> --- a/drivers/gpu/drm/i915/i915_debugfs.c
> +++ b/drivers/gpu/drm/i915/i915_debugfs.c
> @@ -30,6 +30,7 @@
> #include <linux/debugfs.h>
> #include <linux/slab.h>
> #include <linux/export.h>
> +#include <linux/list_sort.h>
> #include <drm/drmP.h>
> #include "intel_drv.h"
> #include "intel_ringbuffer.h"
> @@ -187,6 +188,67 @@ static int i915_gem_object_list_info(struct seq_file *m, void *data)
> return 0;
> }
>
> +static int obj_rank_by_stolen(void *priv,
> + struct list_head *A, struct list_head *B)
> +{
> + struct drm_i915_gem_object *a =
> + container_of(A, struct drm_i915_gem_object, exec_list);
> + struct drm_i915_gem_object *b =
> + container_of(B, struct drm_i915_gem_object, exec_list);
> +
> + return a->stolen->start - b->stolen->start;
> +}
> +
> +static int i915_gem_stolen_list_info(struct seq_file *m, void *data)
> +{
> + struct drm_info_node *node = (struct drm_info_node *) m->private;
> + struct drm_device *dev = node->minor->dev;
> + struct drm_i915_private *dev_priv = dev->dev_private;
> + struct drm_i915_gem_object *obj;
> + size_t total_obj_size, total_gtt_size;
> + LIST_HEAD(stolen);
> + int count, ret;
> +
> + ret = mutex_lock_interruptible(&dev->struct_mutex);
> + if (ret)
> + return ret;
> +
> + total_obj_size = total_gtt_size = count = 0;
> + list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
> + if (obj->stolen == NULL)
> + continue;
> +
> + list_add(&obj->exec_list, &stolen);
> +
> + total_obj_size += obj->base.size;
> + total_gtt_size += i915_gem_obj_ggtt_size(obj);
> + count++;
> + }
> + list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
> + if (obj->stolen == NULL)
> + continue;
> +
> + list_add(&obj->exec_list, &stolen);
> +
> + total_obj_size += obj->base.size;
> + count++;
> + }
> + list_sort(NULL, &stolen, obj_rank_by_stolen);
> + seq_puts(m, "Stolen:\n");
> + while (!list_empty(&stolen)) {
> + obj = list_first_entry(&stolen, typeof(*obj), exec_list);
> + seq_puts(m, " ");
> + describe_obj(m, obj);
> + seq_putc(m, '\n');
> + list_del_init(&obj->exec_list);
> + }
> + mutex_unlock(&dev->struct_mutex);
> +
> + seq_printf(m, "Total %d objects, %zu bytes, %zu GTT size\n",
> + count, total_obj_size, total_gtt_size);
> + return 0;
> +}
> +
> #define count_objects(list, member) do { \
> list_for_each_entry(obj, list, member) { \
> size += i915_gem_obj_ggtt_size(obj); \
> @@ -2092,6 +2154,7 @@ static struct drm_info_list i915_debugfs_list[] = {
> {"i915_gem_pinned", i915_gem_gtt_info, 0, (void *) PINNED_LIST},
> {"i915_gem_active", i915_gem_object_list_info, 0, (void *) ACTIVE_LIST},
> {"i915_gem_inactive", i915_gem_object_list_info, 0, (void *) INACTIVE_LIST},
> + {"i915_gem_stolen", i915_gem_stolen_list_info },
> {"i915_gem_pageflip", i915_gem_pageflip_info, 0},
> {"i915_gem_request", i915_gem_request_info, 0},
> {"i915_gem_seqno", i915_gem_seqno_info, 0},
> --
> 1.8.1.2
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
--
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch
next prev parent reply other threads:[~2013-08-07 21:44 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-07 17:30 [PATCH] drm/i915: List objects allocated from stolen memory in debugfs Chris Wilson
2013-08-07 21:44 ` Daniel Vetter [this message]
2013-08-08 9:15 ` Chris Wilson
2013-08-08 9:54 ` Daniel Vetter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130807214420.GE22035@phenom.ffwll.local \
--to=daniel@ffwll.ch \
--cc=chris@chris-wilson.co.uk \
--cc=intel-gfx@lists.freedesktop.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox