]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commitdiff
drm/amdkfd: fix null pointer dereference on dev
authorColin Ian King <colin.king@canonical.com>
Wed, 29 May 2019 15:07:34 +0000 (16:07 +0100)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 29 May 2019 21:50:09 +0000 (16:50 -0500)
The pointer dev is set to null yet it is being dereferenced when
checking dev->dqm->sched_policy.  Fix this by performing the check
on dev->dqm->sched_policy after dev has been assigned and null
checked.  Also remove the redundant null assignment to dev.

Addresses-Coverity: ("Explicit null dereference")
Fixes: 1a058c337676 ("drm/amdkfd: New IOCTL to allocate queue GWS")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdkfd/kfd_chardev.c

index aab2aa6c1deeb3a7bfe0dc0fe6d14923e4aede64..ea82828fdc76f438c813611aaebf059f9e5e1e9b 100644 (file)
@@ -1572,10 +1572,9 @@ static int kfd_ioctl_alloc_queue_gws(struct file *filep,
 {
        int retval;
        struct kfd_ioctl_alloc_queue_gws_args *args = data;
-       struct kfd_dev *dev = NULL;
+       struct kfd_dev *dev;
 
-       if (!hws_gws_support ||
-               dev->dqm->sched_policy == KFD_SCHED_POLICY_NO_HWS)
+       if (!hws_gws_support)
                return -EINVAL;
 
        dev = kfd_device_by_id(args->gpu_id);
@@ -1583,6 +1582,8 @@ static int kfd_ioctl_alloc_queue_gws(struct file *filep,
                pr_debug("Could not find gpu id 0x%x\n", args->gpu_id);
                return -EINVAL;
        }
+       if (dev->dqm->sched_policy == KFD_SCHED_POLICY_NO_HWS)
+               return -EINVAL;
 
        mutex_lock(&p->mutex);
        retval = pqm_set_gws(&p->pqm, args->queue_id, args->num_gws ? dev->gws : NULL);