]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/amdkfd: Properly acquire queue buffers in CRIU restore
authorDavid Francis <David.Francis@amd.com>
Thu, 4 Jun 2026 19:04:03 +0000 (15:04 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 17 Jun 2026 22:08:14 +0000 (18:08 -0400)
When kfd_queue_acquire_buffers() was split off from
set_queue_properties_from_user(), set_queue_properties_from_criu()
was missed. Thus, set_queue_properties_from_criu() is not
filling out the buffer fields of queue_properties, which
can come up when subsequent code expects them to be non-null.

Add the proper call to kfd_queue_acquire_buffers(), and also
use the right cast types in set_queue_properties_from_criu()
(which were missed at the same time)

Signed-off-by: David Francis <David.Francis@amd.com>
Reviewed-by: Kent Russell <kent.russell@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
(cherry picked from commit 88ed96abbbe27b70193544fbc1ee06448c274714)

drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c

index 44e39ce222b78b95b010ed01651361db2b4a8db7..0ac35789b239943d1cc7136c43b813d657a92abc 100644 (file)
@@ -962,8 +962,8 @@ static void set_queue_properties_from_criu(struct queue_properties *qp,
        qp->priority = q_data->priority;
        qp->queue_address = q_data->q_address;
        qp->queue_size = q_data->q_size;
-       qp->read_ptr = (uint32_t *) q_data->read_ptr_addr;
-       qp->write_ptr = (uint32_t *) q_data->write_ptr_addr;
+       qp->read_ptr = (void __user *)q_data->read_ptr_addr;
+       qp->write_ptr = (void __user *)q_data->write_ptr_addr;
        qp->eop_ring_buffer_address = q_data->eop_ring_buffer_address;
        qp->eop_ring_buffer_size = q_data->eop_ring_buffer_size;
        qp->ctx_save_restore_area_address = q_data->ctx_save_restore_area_address;
@@ -1042,10 +1042,18 @@ int kfd_criu_restore_queue(struct kfd_process *p,
        memset(&qp, 0, sizeof(qp));
        set_queue_properties_from_criu(&qp, q_data, NUM_XCC(pdd->dev->adev->gfx.xcc_mask));
 
+       ret = kfd_queue_acquire_buffers(pdd, &qp);
+       if (ret) {
+               pr_debug("failed to acquire user queue buffers for CRIU\n");
+               goto exit;
+       }
+
        print_queue_properties(&qp);
 
        ret = pqm_create_queue(&p->pqm, pdd->dev, &qp, &queue_id, q_data, mqd, ctl_stack, NULL);
        if (ret) {
+               kfd_queue_unref_bo_vas(pdd, &qp);
+               kfd_queue_release_buffers(pdd, &qp);
                pr_err("Failed to create new queue err:%d\n", ret);
                goto exit;
        }