radv/winsys: Remove extra sizeof multiply.
The pointer is already uint64_t*, so the sizeof was too much ...
Fixes: eeff7e1154
"radv: Add userspace fence buffer per context."
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5181>
This commit is contained in:

committed by
Marge Bot

parent
6c99de98ec
commit
906435fb0e
@@ -164,7 +164,7 @@ static void radv_amdgpu_request_to_fence(struct radv_amdgpu_ctx *ctx,
|
||||
fence->fence.ip_instance = req->ip_instance;
|
||||
fence->fence.ring = req->ring;
|
||||
fence->fence.fence = req->seq_no;
|
||||
fence->user_ptr = (volatile uint64_t*)(ctx->fence_map + (req->ip_type * MAX_RINGS_PER_TYPE + req->ring) * sizeof(uint64_t));
|
||||
fence->user_ptr = (volatile uint64_t*)(ctx->fence_map + req->ip_type * MAX_RINGS_PER_TYPE + req->ring);
|
||||
}
|
||||
|
||||
static struct radeon_winsys_fence *radv_amdgpu_create_fence()
|
||||
|
Reference in New Issue
Block a user