Skip to content

Commit

Permalink
Merge 62f40b6 into 07a090b
Browse files Browse the repository at this point in the history
  • Loading branch information
fdavid-amd authored Jan 30, 2024
2 parents 07a090b + 62f40b6 commit 931de85
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion plugins/amdgpu/amdgpu_plugin.c
Original file line number Diff line number Diff line change
Expand Up @@ -1999,7 +1999,10 @@ int amdgpu_plugin_resume_devices_late(int target_pid)
args.op = KFD_CRIU_OP_RESUME;
pr_info("Calling IOCTL to start notifiers and queues\n");
if (kmtIoctl(fd, AMDKFD_IOC_CRIU_OP, &args) == -1) {
pr_perror("restore late ioctl failed");
if (errno == ESRCH)
pr_info("Pid %d has no kfd process info\n", target_pid);
else
pr_perror("restore late ioctl failed");
ret = -1;
}

Expand Down

0 comments on commit 931de85

Please sign in to comment.