Commit 3108cc03 authored by Dave Airlie's avatar Dave Airlie Committed by Dave Airlie

nouveau/gsp: free userd allocation.

This was being leaked.
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20231222043308.3090089-6-airlied@gmail.com
parent a9b9b42b
...@@ -242,6 +242,7 @@ r535_chan_id_put(struct nvkm_chan *chan) ...@@ -242,6 +242,7 @@ r535_chan_id_put(struct nvkm_chan *chan)
nvkm_memory_unref(&userd->mem); nvkm_memory_unref(&userd->mem);
nvkm_chid_put(runl->chid, userd->chid, &chan->cgrp->lock); nvkm_chid_put(runl->chid, userd->chid, &chan->cgrp->lock);
list_del(&userd->head); list_del(&userd->head);
kfree(userd);
} }
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment