dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Thomas Hellstrom <thellstrom@vmware.com>
To: Alex Deucher <alexdeucher@gmail.com>, dri-devel@lists.freedesktop.org
Cc: Felix Kuehling <Felix.Kuehling@amd.com>
Subject: Re: [PATCH] drm/ttm: Fix TTM BO accounting
Date: Tue, 12 Apr 2016 18:21:38 +0200	[thread overview]
Message-ID: <570D2092.6070101@vmware.com> (raw)
In-Reply-To: <1460476645-23210-1-git-send-email-alexander.deucher@amd.com>

On 04/12/2016 05:57 PM, Alex Deucher wrote:
> From: Felix Kuehling <Felix.Kuehling@amd.com>
>
> TTM BO accounting is out of sync with how memory is really allocated
> in ttm[_dma]_tt_alloc_page_directory. This resulted in excessive
> estimated overhead with many small allocations.
>
> ttm_dma_tt_alloc_page_directory makes a single allocation for three
> arrays: pages, DMA and CPU addresses. It uses drm_calloc_large, which
> uses kmalloc internally for allocations smaller than PAGE_SIZE.
> ttm_round_pot should be a good approximation of its memory usage both
> above and below PAGE_SIZE.

I think for allocations larger than PAGE_SIZE,
ttm_round_pot() will overestimate. You should probably use the smaller
of the two.

/Thomas



>
> Signed-off-by: Felix Kuehling <Felix.Kuehling@amd.com>
> Reviewed-by: Monk Liu <monk.liu@amd.com>
> Reviewed-by: Christian König <christian.koenig@amd.com>
> ---
>  drivers/gpu/drm/ttm/ttm_bo.c | 5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c
> index 4cbf265..870a87a 100644
> --- a/drivers/gpu/drm/ttm/ttm_bo.c
> +++ b/drivers/gpu/drm/ttm/ttm_bo.c
> @@ -1215,7 +1215,7 @@ size_t ttm_bo_acc_size(struct ttm_bo_device *bdev,
>  	size_t size = 0;
>  
>  	size += ttm_round_pot(struct_size);
> -	size += PAGE_ALIGN(npages * sizeof(void *));
> +	size += ttm_round_pot(npages * sizeof(void *));
>  	size += ttm_round_pot(sizeof(struct ttm_tt));
>  	return size;
>  }
> @@ -1229,8 +1229,7 @@ size_t ttm_bo_dma_acc_size(struct ttm_bo_device *bdev,
>  	size_t size = 0;
>  
>  	size += ttm_round_pot(struct_size);
> -	size += PAGE_ALIGN(npages * sizeof(void *));
> -	size += PAGE_ALIGN(npages * sizeof(dma_addr_t));
> +	size += ttm_round_pot(npages * (2*sizeof(void *) + sizeof(dma_addr_t)));
>  	size += ttm_round_pot(sizeof(struct ttm_dma_tt));
>  	return size;
>  }

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

  reply	other threads:[~2016-04-12 16:21 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-12 15:57 [PATCH] drm/ttm: Fix TTM BO accounting Alex Deucher
2016-04-12 16:21 ` Thomas Hellstrom [this message]
2016-04-12 16:39   ` Felix Kuehling
2016-04-12 17:37     ` Thomas Hellstrom

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=570D2092.6070101@vmware.com \
    --to=thellstrom@vmware.com \
    --cc=Felix.Kuehling@amd.com \
    --cc=alexdeucher@gmail.com \
    --cc=dri-devel@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