]> git.ipfire.org Git - thirdparty/linux.git/commit
drm/amdkfd: Align expected_queue_size to PAGE_SIZE
authorDonet Tom <donettom@linux.ibm.com>
Mon, 23 Mar 2026 04:28:35 +0000 (09:58 +0530)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 30 Mar 2026 20:11:29 +0000 (16:11 -0400)
commit68484a648ade555842e0c75a392f3572b3d51998
treefab703448337cbad1f6b86b1bfadeddabf095496
parent62f553d60a801384336f5867967c26ddf3b17038
drm/amdkfd: Align expected_queue_size to PAGE_SIZE

The AQL queue size can be 4K, but the minimum buffer object (BO)
allocation size is PAGE_SIZE. On systems with a page size larger
than 4K, the expected queue size does not match the allocated BO
size, causing queue creation to fail.

Align the expected queue size to PAGE_SIZE so that it matches the
allocated BO size and allows queue creation to succeed.

Reviewed-by: Felix Kuehling <felix.kuehling@amd.com>
Signed-off-by: Donet Tom <donettom@linux.ibm.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
(cherry picked from commit b01cd158a2f5230b137396c5f8cda3fc780abbc2)
drivers/gpu/drm/amd/amdkfd/kfd_queue.c