drm/i915: Don't leak the DPT if drm_framebuffer_init() fails
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Wed, 15 Feb 2023 22:24:25 +0000 (00:24 +0200)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Thu, 16 Feb 2023 20:10:38 +0000 (22:10 +0200)
commit5ed88f96c137b9b68ad99f40721031feb6b26923
tree9b983ba25e342bad7fd2e1e5af675958594206ff
parent46b3c0f683d6a2128f7f2bf236bcdc62caec5c83
drm/i915: Don't leak the DPT if drm_framebuffer_init() fails

We are failing to free the already allocated DPT if the final
drm_framebuffer_init() fails. That would require idr_alloc() to
fail, so not very likely, but let's add the cleanup code anyway.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230215222426.26085-1-ville.syrjala@linux.intel.com
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
drivers/gpu/drm/i915/display/intel_fb.c