From: zhoucm1 <david1.zhou-5C7GfCeVMHo@public.gmane.org>
To: "Roger.He" <Hongbo.He-5C7GfCeVMHo@public.gmane.org>,
amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
Subject: Re: [PATCH] drm/amdgpu: validate shadow before restoring from it
Date: Tue, 25 Apr 2017 11:16:57 +0800 [thread overview]
Message-ID: <58FEBFA9.7050700@amd.com> (raw)
In-Reply-To: <1493090078-29023-1-git-send-email-Hongbo.He-5C7GfCeVMHo@public.gmane.org>
On 2017年04月25日 11:14, Roger.He wrote:
> Change-Id: Id925f4e241c4192127880d2017fbf2979aa09fc7
> Signed-off-by: Roger.He <Hongbo.He@amd.com>
> ---
> drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 33 ++++++++++++++++++++++++++++++
> 1 file changed, 33 insertions(+)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> index f74149c..cebd546 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> @@ -2468,6 +2468,27 @@ bool amdgpu_need_backup(struct amdgpu_device *adev)
> return amdgpu_lockup_timeout > 0 ? true : false;
> }
>
> +static int amdgpu_bo_validate(struct amdgpu_bo *bo)
> +{
> + uint32_t domain;
> + int r;
> +
> + if (bo->pin_count)
> + return 0;
> +
> + domain = bo->prefered_domains;
> +
> +retry:
> + amdgpu_ttm_placement_from_domain(bo, domain);
> + r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false);
> + if (unlikely(r == -ENOMEM) && domain != bo->allowed_domains) {
> + domain = bo->allowed_domains;
> + goto retry;
> + }
> +
> + return r;
> +}
you can move this function to amdgpu_object.c, with that fix, it looks
ok to me, Reviewed-by: Chunming Zhou <david1.zhou@amd.com>
> +
> static int amdgpu_recover_vram_from_shadow(struct amdgpu_device *adev,
> struct amdgpu_ring *ring,
> struct amdgpu_bo *bo,
> @@ -2485,6 +2506,18 @@ static int amdgpu_recover_vram_from_shadow(struct amdgpu_device *adev,
> domain = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type);
> /* if bo has been evicted, then no need to recover */
> if (domain == AMDGPU_GEM_DOMAIN_VRAM) {
> + r = amdgpu_bo_validate(bo->shadow);
> + if (r) {
> + DRM_ERROR("bo validate failed!\n");
> + goto err;
> + }
> +
> + r = amdgpu_ttm_bind(&bo->shadow->tbo, &bo->shadow->tbo.mem);
> + if (r) {
> + DRM_ERROR("%p bind failed\n", bo->shadow);
> + goto err;
> + }
> +
> r = amdgpu_bo_restore_from_shadow(adev, ring, bo,
> NULL, fence, true);
> if (r) {
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx
next prev parent reply other threads:[~2017-04-25 3:16 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-25 3:14 [PATCH] drm/amdgpu: validate shadow before restoring from it Roger.He
[not found] ` <1493090078-29023-1-git-send-email-Hongbo.He-5C7GfCeVMHo@public.gmane.org>
2017-04-25 3:16 ` zhoucm1 [this message]
[not found] ` <58FEBFA9.7050700-5C7GfCeVMHo@public.gmane.org>
2017-04-25 8:09 ` Christian König
[not found] ` <21598379-3859-bf61-50b9-467cbd40ab74-ANTagKRnAhcb1SvskN2V4Q@public.gmane.org>
2017-04-25 8:49 ` He, Hongbo
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=58FEBFA9.7050700@amd.com \
--to=david1.zhou-5c7gfcevmho@public.gmane.org \
--cc=Hongbo.He-5C7GfCeVMHo@public.gmane.org \
--cc=amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@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.