drm/amdkfd: CRIU Implement KFD unpause operation
authorDavid Yat Sin <david.yatsin@amd.com>
Mon, 16 Aug 2021 14:39:39 +0000 (10:39 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 7 Feb 2022 22:59:46 +0000 (17:59 -0500)
Introducing UNPAUSE op. After CRIU amdgpu plugin performs a PROCESS_INFO
op the queues will be stay in an evicted state. Once the plugin is done
draining BO contents, it is safe to perform an UNPAUSE op for the queues
to resume.

Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com>
Signed-off-by: David Yat Sin <david.yatsin@amd.com>
Signed-off-by: Rajneesh Bhardwaj <rajneesh.bhardwaj@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdkfd/kfd_chardev.c
drivers/gpu/drm/amd/amdkfd/kfd_priv.h
drivers/gpu/drm/amd/amdkfd/kfd_process.c

index 95fc5668195ca11a0b32cf9c3bb5e48e1fdcf28e..6af6deeda52347fcf8f3eaefb4d4af03f4086bbe 100644 (file)
@@ -2049,6 +2049,14 @@ static int criu_checkpoint(struct file *filep,
                goto exit_unlock;
        }
 
+       /* Confirm all process queues are evicted */
+       if (!p->queues_paused) {
+               pr_err("Cannot dump process when queues are not in evicted state\n");
+               /* CRIU plugin did not call op PROCESS_INFO before checkpointing */
+               ret = -EINVAL;
+               goto exit_unlock;
+       }
+
        criu_get_process_object_info(p, &num_bos, &priv_size);
 
        if (num_bos != args->num_bos ||
@@ -2388,7 +2396,24 @@ static int criu_unpause(struct file *filep,
                        struct kfd_process *p,
                        struct kfd_ioctl_criu_args *args)
 {
-       return 0;
+       int ret;
+
+       mutex_lock(&p->mutex);
+
+       if (!p->queues_paused) {
+               mutex_unlock(&p->mutex);
+               return -EINVAL;
+       }
+
+       ret = kfd_process_restore_queues(p);
+       if (ret)
+               pr_err("Failed to unpause queues ret:%d\n", ret);
+       else
+               p->queues_paused = false;
+
+       mutex_unlock(&p->mutex);
+
+       return ret;
 }
 
 static int criu_resume(struct file *filep,
@@ -2440,6 +2465,12 @@ static int criu_process_info(struct file *filep,
                goto err_unlock;
        }
 
+       ret = kfd_process_evict_queues(p);
+       if (ret)
+               goto err_unlock;
+
+       p->queues_paused = true;
+
        args->pid = task_pid_nr_ns(p->lead_thread,
                                        task_active_pid_ns(p->lead_thread));
 
@@ -2447,6 +2478,10 @@ static int criu_process_info(struct file *filep,
 
        dev_dbg(kfd_device, "Num of bos:%u\n", args->num_bos);
 err_unlock:
+       if (ret) {
+               kfd_process_restore_queues(p);
+               p->queues_paused = false;
+       }
        mutex_unlock(&p->mutex);
        return ret;
 }
index 9b347247055c88e311bf0aa5fe0cfc9e509b2bb4..677f214471123ef6d2fb67e8371060741181256e 100644 (file)
@@ -877,6 +877,8 @@ struct kfd_process {
        bool xnack_enabled;
 
        atomic_t poison;
+       /* Queues are in paused stated because we are in the process of doing a CRIU checkpoint */
+       bool queues_paused;
 };
 
 #define KFD_PROCESS_TABLE_SIZE 5 /* bits: 32 entries */
index b3198e18662220fd430c46060734cd52c80c32e6..0649064b8e95068949dc9b0955745fc69224ed3e 100644 (file)
@@ -1384,6 +1384,7 @@ static struct kfd_process *create_process(const struct task_struct *thread)
        process->mm = thread->mm;
        process->lead_thread = thread->group_leader;
        process->n_pdds = 0;
+       process->queues_paused = false;
        INIT_DELAYED_WORK(&process->eviction_work, evict_process_worker);
        INIT_DELAYED_WORK(&process->restore_work, restore_process_worker);
        process->last_restore_timestamp = get_jiffies_64();