diff options
author | Philip Yang <Philip.Yang@amd.com> | 2023-05-18 22:08:16 +0300 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2023-06-09 17:53:03 +0300 |
commit | acf429dcac1440169a3b28da784cbda72f3b678b (patch) | |
tree | efd008ae763e537390a069323643ba5264531b9b /drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c | |
parent | 63b9acdf06200bb6537a3a479741b4cb52488a89 (diff) | |
download | linux-acf429dcac1440169a3b28da784cbda72f3b678b.tar.xz |
drm/amdkfd: Align partition memory size to page size
The compute partition memory size calculated from KFD_XCP_MEMORY_SIZE
may not align to page size if xcp_mgr->num_xcp_per_mem_partition is 6.
Change the KFD_XCP_MEMORY_SIZE macro to return page align size, so KFD
node memory size reported in sysfs is page align size, to avoid
application VRAM allocation failure because application may use the size
directly and Thunk requires the memory allocation size is page size
align.
Signed-off-by: Philip Yang <Philip.Yang@amd.com>
Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c index 5de92c9ab18f..66f80b9ab0c5 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c @@ -804,7 +804,7 @@ u64 amdgpu_amdkfd_xcp_memory_size(struct amdgpu_device *adev, int xcp_id) if (adev->gmc.num_mem_partitions && xcp_id >= 0 && mem_id >= 0) { tmp = adev->gmc.mem_partitions[mem_id].size; do_div(tmp, adev->xcp_mgr->num_xcp_per_mem_partition); - return tmp; + return ALIGN_DOWN(tmp, PAGE_SIZE); } else { return adev->gmc.real_vram_size; } |