mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 01:22:07 +00:00
drm/i915: fix an error code in intel_overlay_do_put_image()
This code should propagate the error from intel_overlay_pin_fb() but currently it returns success. Fixes:1b321026e2
("drm/i915: Pass ww ctx to intel_pin_to_display_plane") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/YHaFcEzcnh/hk1/Q@mwanda (cherry picked from commit103b8cbac2
) Signed-off-by: Jani Nikula <jani.nikula@intel.com>
This commit is contained in:
parent
3aea49fd4f
commit
63b6c7be3e
@ -803,8 +803,10 @@ static int intel_overlay_do_put_image(struct intel_overlay *overlay,
|
|||||||
atomic_inc(&dev_priv->gpu_error.pending_fb_pin);
|
atomic_inc(&dev_priv->gpu_error.pending_fb_pin);
|
||||||
|
|
||||||
vma = intel_overlay_pin_fb(new_bo);
|
vma = intel_overlay_pin_fb(new_bo);
|
||||||
if (IS_ERR(vma))
|
if (IS_ERR(vma)) {
|
||||||
|
ret = PTR_ERR(vma);
|
||||||
goto out_pin_section;
|
goto out_pin_section;
|
||||||
|
}
|
||||||
|
|
||||||
i915_gem_object_flush_frontbuffer(new_bo, ORIGIN_DIRTYFB);
|
i915_gem_object_flush_frontbuffer(new_bo, ORIGIN_DIRTYFB);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user