]> www.infradead.org Git - users/hch/misc.git/commitdiff
drm/amdkfd: Replace kzalloc + copy_from_user with memdup_user
authorThorsten Blum <thorsten.blum@linux.dev>
Mon, 8 Sep 2025 21:31:56 +0000 (23:31 +0200)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 15 Sep 2025 20:51:48 +0000 (16:51 -0400)
Replace kzalloc() followed by copy_from_user() with memdup_user() to
improve and simplify kfd_ioctl_set_cu_mask().

Return early if an error occurs and remove the obsolete 'out' label.

No functional changes intended.

Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdkfd/kfd_chardev.c

index 8535a52a62cab7d0a9441de1a3c8c67a7c29351e..0f0719528bcc6edd97f04bcf908cd7ba0b3da003 100644 (file)
@@ -521,15 +521,10 @@ static int kfd_ioctl_set_cu_mask(struct file *filp, struct kfd_process *p,
                cu_mask_size = sizeof(uint32_t) * (max_num_cus/32);
        }
 
-       minfo.cu_mask.ptr = kzalloc(cu_mask_size, GFP_KERNEL);
-       if (!minfo.cu_mask.ptr)
-               return -ENOMEM;
-
-       retval = copy_from_user(minfo.cu_mask.ptr, cu_mask_ptr, cu_mask_size);
-       if (retval) {
+       minfo.cu_mask.ptr = memdup_user(cu_mask_ptr, cu_mask_size);
+       if (IS_ERR(minfo.cu_mask.ptr)) {
                pr_debug("Could not copy CU mask from userspace");
-               retval = -EFAULT;
-               goto out;
+               return PTR_ERR(minfo.cu_mask.ptr);
        }
 
        mutex_lock(&p->mutex);
@@ -538,7 +533,6 @@ static int kfd_ioctl_set_cu_mask(struct file *filp, struct kfd_process *p,
 
        mutex_unlock(&p->mutex);
 
-out:
        kfree(minfo.cu_mask.ptr);
        return retval;
 }