From: zhoucm1 <david1.zhou-5C7GfCeVMHo@public.gmane.org>
To: "Christian König"
<deathsimple-ANTagKRnAhcb1SvskN2V4Q@public.gmane.org>,
amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
Subject: Re: [PATCH] drm/amdgpu: ttm_bind only when user needs gpu_addr in bo pin
Date: Wed, 12 Jul 2017 16:06:22 +0800 [thread overview]
Message-ID: <5965D87E.5060006@amd.com> (raw)
In-Reply-To: <e2c6e19f-0bd8-b3d6-e7a3-9d07c52a68e9-ANTagKRnAhcb1SvskN2V4Q@public.gmane.org>
On 2017年07月12日 15:54, Christian König wrote:
> Looks like it makes sense, but why should that be useful?
1. when you set gart size 256M, the space is limit, so only bind gart
when necessary.
2. less cpu overhead with un-necessary statements.
Regards,
David Zhou
>
> Christian.
>
> Am 12.07.2017 um 06:38 schrieb Chunming Zhou:
>> Change-Id: I282e1212346ed76470cadf39153109ab135f32f3
>> Signed-off-by: Chunming Zhou <David1.Zhou@amd.com>
>> ---
>> drivers/gpu/drm/amd/amdgpu/amdgpu_object.c | 13 +++++++------
>> 1 file changed, 7 insertions(+), 6 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
>> b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
>> index a0ad0e0..81c1486 100644
>> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
>> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
>> @@ -778,15 +778,16 @@ int amdgpu_bo_pin_restricted(struct amdgpu_bo
>> *bo, u32 domain,
>> dev_err(adev->dev, "%p pin failed\n", bo);
>> goto error;
>> }
>> - r = amdgpu_ttm_bind(&bo->tbo, &bo->tbo.mem);
>> - if (unlikely(r)) {
>> - dev_err(adev->dev, "%p bind failed\n", bo);
>> - goto error;
>> - }
>> bo->pin_count = 1;
>> - if (gpu_addr != NULL)
>> + if (gpu_addr != NULL) {
>> + r = amdgpu_ttm_bind(&bo->tbo, &bo->tbo.mem);
>> + if (unlikely(r)) {
>> + dev_err(adev->dev, "%p bind failed\n", bo);
>> + goto error;
>> + }
>> *gpu_addr = amdgpu_bo_gpu_offset(bo);
>> + }
>> if (domain == AMDGPU_GEM_DOMAIN_VRAM) {
>> adev->vram_pin_size += amdgpu_bo_size(bo);
>> if (bo->flags & AMDGPU_GEM_CREATE_NO_CPU_ACCESS)
>
>
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx
next prev parent reply other threads:[~2017-07-12 8:06 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-12 4:38 [PATCH] drm/amdgpu: ttm_bind only when user needs gpu_addr in bo pin Chunming Zhou
[not found] ` <1499834315-11413-1-git-send-email-David1.Zhou-5C7GfCeVMHo@public.gmane.org>
2017-07-12 7:54 ` Christian König
[not found] ` <e2c6e19f-0bd8-b3d6-e7a3-9d07c52a68e9-ANTagKRnAhcb1SvskN2V4Q@public.gmane.org>
2017-07-12 8:06 ` zhoucm1 [this message]
[not found] ` <5965D87E.5060006-5C7GfCeVMHo@public.gmane.org>
2017-07-12 8:13 ` Christian König
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=5965D87E.5060006@amd.com \
--to=david1.zhou-5c7gfcevmho@public.gmane.org \
--cc=amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
--cc=deathsimple-ANTagKRnAhcb1SvskN2V4Q@public.gmane.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.