]> git.baikalelectronics.ru Git - kernel.git/commit
drm/core: Do not preserve framebuffer on rmfb, v4.
authorMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
Wed, 4 May 2016 12:38:26 +0000 (14:38 +0200)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Thu, 5 May 2016 11:50:53 +0000 (13:50 +0200)
commit37021cfda87d09a711fbc100ab5fb849380b4be7
treebd0eec4d4cca6421bac0b693061982f88352a7b7
parente60de124d57e027fdb6e52f4a47d6dc7f1f28d55
drm/core: Do not preserve framebuffer on rmfb, v4.

It turns out that preserving framebuffers after the rmfb call breaks
vmwgfx userspace. This was originally introduced because it was thought
nobody relied on the behavior, but unfortunately it seems there are
exceptions.

drm_framebuffer_remove may fail with -EINTR now, so a straight revert
is impossible. There is no way to remove the framebuffer from the lists
and active planes without introducing a race because of the different
locking requirements. Instead call drm_framebuffer_remove from a
workqueue, which is unaffected by signals.

Changes since v1:
- Add comment.
Changes since v2:
- Add fastpath for refcount = 1. (danvet)
Changes since v3:
- Rebased.
- Restore lastclose framebuffer removal too.

Cc: stable@vger.kernel.org #v4.4+
Fixes: 8775c12c3628 ("drm/core: Preserve the framebuffer after removing it.")
Testcase: kms_rmfb_basic
References: https://lists.freedesktop.org/archives/dri-devel/2016-March/102876.html
Cc: Thomas Hellstrom <thellstrom@vmware.com>
Cc: David Herrmann <dh.herrmann@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Tested-by: Thomas Hellstrom <thellstrom@vmware.com> #v3
Tested-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/6c63ca37-0e7e-ac7f-a6d2-c7822e3d611f@linux.intel.com
drivers/gpu/drm/drm_crtc.c