drm/nouveau: fix stale locked mutex in nouveau_gem_ioctl_pushbuf
authorKarol Herbst <kherbst@redhat.com>
Tue, 5 Mar 2024 13:38:52 +0000 (14:38 +0100)
committerKarol Herbst <kherbst@redhat.com>
Tue, 5 Mar 2024 13:59:38 +0000 (14:59 +0100)
If VM_BIND is enabled on the client the legacy submission ioctl can't be
used, however if a client tries to do so regardless it will return an
error. In this case the clients mutex remained unlocked leading to a
deadlock inside nouveau_drm_postclose or any other nouveau ioctl call.

Fixes: b88baab82871 ("drm/nouveau: implement new VM_BIND uAPI")
Cc: Danilo Krummrich <dakr@redhat.com>
Cc: <stable@vger.kernel.org> # v6.6+
Signed-off-by: Karol Herbst <kherbst@redhat.com>
Reviewed-by: Lyude Paul <lyude@redhat.com>
Reviewed-by: Danilo Krummrich <dakr@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240305133853.2214268-1-kherbst@redhat.com
drivers/gpu/drm/nouveau/nouveau_gem.c

index 49c2bcbef1299de1f556353423300b345e5cc538..5a887d67dc0e8c71cf1987acb68f48f4bbf05d70 100644 (file)
@@ -764,7 +764,7 @@ nouveau_gem_ioctl_pushbuf(struct drm_device *dev, void *data,
                return -ENOMEM;
 
        if (unlikely(nouveau_cli_uvmm(cli)))
-               return -ENOSYS;
+               return nouveau_abi16_put(abi16, -ENOSYS);
 
        list_for_each_entry(temp, &abi16->channels, head) {
                if (temp->chan->chid == req->channel) {