diff options
| author | 2021-05-18 14:28:59 -0700 | |
|---|---|---|
| committer | 2021-05-26 21:18:13 +0200 | |
| commit | 5562f75c49cc059b9b36b03bf0a61f11d2a8648f (patch) | |
| tree | d5e2c0ed3b7750f71d7768c3e2d1d01501da4d00 /drivers/gpu/drm/drm_bufs.c | |
| parent | drm/kconfig: Remove unused select of DRM_KMS_FB_HELPER (diff) | |
| download | linux-dev-5562f75c49cc059b9b36b03bf0a61f11d2a8648f.tar.xz linux-dev-5562f75c49cc059b9b36b03bf0a61f11d2a8648f.zip | |
drm: fix leaked dma handles after removing drm_pci_free
After removing drm_pci_alloc/free, some instances where drm_pci_free()
would have kfreed the dma handle were skipped.
Ensure these handles are freed properly.
Signed-off-by: Joseph Kogut <joseph.kogut@gmail.com>
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://patchwork.freedesktop.org/patch/msgid/20210518212859.4148903-1-joseph.kogut@gmail.com
Diffstat (limited to 'drivers/gpu/drm/drm_bufs.c')
| -rw-r--r-- | drivers/gpu/drm/drm_bufs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/drm_bufs.c b/drivers/gpu/drm/drm_bufs.c index c23d7f7c0232..ae8e4d76209c 100644 --- a/drivers/gpu/drm/drm_bufs.c +++ b/drivers/gpu/drm/drm_bufs.c @@ -685,6 +685,7 @@ static void drm_cleanup_buf_error(struct drm_device *dev, dmah->size, dmah->vaddr, dmah->busaddr); + kfree(dmah); } } kfree(entry->seglist); |
