From: "Christian König" <christian.koenig@amd.com>
To: Pan Bian <bianpan201603@163.com>,
Alex Deucher <alexander.deucher@amd.com>,
David Airlie <airlied@linux.ie>
Cc: <amd-gfx@lists.freedesktop.org>,
<dri-devel@lists.freedesktop.org>, <linux-kernel@vger.kernel.org>,
Pan Bian <bianpan2016@163.com>
Subject: Re: [PATCH 1/1] drm/radeon: check return value of radeon_ring_lock
Date: Mon, 24 Apr 2017 11:08:02 +0200 [thread overview]
Message-ID: <569d0101-6caf-9354-4e7f-51ebfef5dce6@amd.com> (raw)
In-Reply-To: <1493023085-11901-1-git-send-email-bianpan201603@163.com>
Am 24.04.2017 um 10:38 schrieb Pan Bian:
> From: Pan Bian <bianpan2016@163.com>
>
> Function radeon_ring_lock() returns an errno on failure, and its return
> value should be validated. However, in functions r420_cp_errata_init()
> and r420_cp_errata_fini(), its return value is not checked. This patch
> adds the checks.
>
> Signed-off-by: Pan Bian <bianpan2016@163.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
> ---
> drivers/gpu/drm/radeon/r420.c | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/radeon/r420.c b/drivers/gpu/drm/radeon/r420.c
> index 2828605..391c764 100644
> --- a/drivers/gpu/drm/radeon/r420.c
> +++ b/drivers/gpu/drm/radeon/r420.c
> @@ -206,6 +206,7 @@ static void r420_clock_resume(struct radeon_device *rdev)
>
> static void r420_cp_errata_init(struct radeon_device *rdev)
> {
> + int r;
> struct radeon_ring *ring = &rdev->ring[RADEON_RING_TYPE_GFX_INDEX];
>
> /* RV410 and R420 can lock up if CP DMA to host memory happens
> @@ -215,7 +216,8 @@ static void r420_cp_errata_init(struct radeon_device *rdev)
> * of the CP init, apparently.
> */
> radeon_scratch_get(rdev, &rdev->config.r300.resync_scratch);
> - radeon_ring_lock(rdev, ring, 8);
> + r = radeon_ring_lock(rdev, ring, 8);
> + WARN_ON(r);
> radeon_ring_write(ring, PACKET0(R300_CP_RESYNC_ADDR, 1));
> radeon_ring_write(ring, rdev->config.r300.resync_scratch);
> radeon_ring_write(ring, 0xDEADBEEF);
> @@ -224,12 +226,14 @@ static void r420_cp_errata_init(struct radeon_device *rdev)
>
> static void r420_cp_errata_fini(struct radeon_device *rdev)
> {
> + int r;
> struct radeon_ring *ring = &rdev->ring[RADEON_RING_TYPE_GFX_INDEX];
>
> /* Catch the RESYNC we dispatched all the way back,
> * at the very beginning of the CP init.
> */
> - radeon_ring_lock(rdev, ring, 8);
> + r = radeon_ring_lock(rdev, ring, 8);
> + WARN_ON(r);
> radeon_ring_write(ring, PACKET0(R300_RB3D_DSTCACHE_CTLSTAT, 0));
> radeon_ring_write(ring, R300_RB3D_DC_FINISH);
> radeon_ring_unlock_commit(rdev, ring, false);
next prev parent reply other threads:[~2017-04-24 9:08 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-24 8:38 Pan Bian
2017-04-24 9:08 ` Christian König [this message]
-- strict thread matches above, loose matches on Subject: below --
2017-04-23 13:36 Pan Bian
2017-04-24 7:47 ` 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=569d0101-6caf-9354-4e7f-51ebfef5dce6@amd.com \
--to=christian.koenig@amd.com \
--cc=airlied@linux.ie \
--cc=alexander.deucher@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=bianpan201603@163.com \
--cc=bianpan2016@163.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=linux-kernel@vger.kernel.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
all inboxes | Powered by JetHome®