drm/amdgpu: debugfs: fix NULL dereference in ta_if_invoke_debugfs_write()
authorDan Carpenter <dan.carpenter@oracle.com>
Tue, 26 Apr 2022 08:49:20 +0000 (11:49 +0300)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 26 Apr 2022 15:52:57 +0000 (11:52 -0400)
If the kzalloc() fails then this code will crash.  Return -ENOMEM instead.

Fixes: e50d9ba0d2cd ("drm/amdgpu: Add debugfs TA load/unload/invoke support")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_psp_ta.c

index 32bcc20..6806deb 100644 (file)
@@ -254,7 +254,7 @@ static ssize_t ta_if_invoke_debugfs_write(struct file *fp, const char *buf, size
 
        shared_buf = kzalloc(shared_buf_len, GFP_KERNEL);
        if (!shared_buf)
-               ret = -ENOMEM;
+               return -ENOMEM;
        if (copy_from_user((void *)shared_buf, &buf[copy_pos], shared_buf_len)) {
                ret = -EFAULT;
                goto err_free_shared_buf;