lkml.org 
[lkml]   [2021]   [Jan]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH] drm/amdkfd: dqm fence memory corruption
    Date
    Amdgpu driver uses 4-byte data type as DQM fence memory,
    and transmits GPU address of fence memory to microcode
    through query status PM4 message. However, query status
    PM4 message definition and microcode processing are all
    processed according to 8 bytes. Fence memory only allocates
    4 bytes of memory, but microcode does write 8 bytes of memory,
    so there is a memory corruption.

    Signed-off-by: Qu Huang <jinsdb@126.com>
    ---
    drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c b/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
    index e686ce2..8b38d0c 100644
    --- a/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
    +++ b/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
    @@ -1161,7 +1161,7 @@ static int start_cpsch(struct device_queue_manager *dqm)
    pr_debug("Allocating fence memory\n");

    /* allocate fence memory on the gart */
    - retval = kfd_gtt_sa_allocate(dqm->dev, sizeof(*dqm->fence_addr),
    + retval = kfd_gtt_sa_allocate(dqm->dev, sizeof(uint64_t),
    &dqm->fence_mem);

    if (retval)
    --
    1.8.3.1
    \
     
     \ /
      Last update: 2021-01-27 16:44    [W:2.405 / U:0.008 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site