[PATCH] drm/amd/amdgpu: Mask rptr as well in ring debugfs

Alex Deucher alexdeucher at gmail.com
Thu Mar 1 14:50:48 UTC 2018


On Thu, Mar 1, 2018 at 9:43 AM, Tom St Denis <tom.stdenis at amd.com> wrote:
> The read/write pointers on sdma4 devices increment
> beyond the ring size and should be masked.  Tested
> on my Ryzen 2400G.
>
> Signed-off-by: Tom St Denis <tom.stdenis at amd.com>

Reviewed-by: Alex Deucher <alexander.deucher at amd.com>

> ---
>  drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c
> index e223b0f6417b..d5f526f38e50 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c
> @@ -484,7 +484,7 @@ static ssize_t amdgpu_debugfs_ring_read(struct file *f, char __user *buf,
>         result = 0;
>
>         if (*pos < 12) {
> -               early[0] = amdgpu_ring_get_rptr(ring);
> +               early[0] = amdgpu_ring_get_rptr(ring) & ring->buf_mask;
>                 early[1] = amdgpu_ring_get_wptr(ring) & ring->buf_mask;
>                 early[2] = ring->wptr & ring->buf_mask;
>                 for (i = *pos / 4; i < 3 && size; i++) {
> --
> 2.14.3
>
> _______________________________________________
> amd-gfx mailing list
> amd-gfx at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx


More information about the amd-gfx mailing list