Commit 9977e5b4 authored by Thomas Zimmermann's avatar Thomas Zimmermann Committed by Gerd Hoffmann
Browse files

drm: Assert that BO is locked in drm_gem_vram_{pin, unpin}_locked()



We may not call drm_gem_vram_{pin,unpin}_locked() with an unlocked
BO. Now test for this.

Signed-off-by: default avatarThomas Zimmermann <tzimmermann@suse.de>
Acked-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20190521110831.20200-4-tzimmermann@suse.de


Signed-off-by: default avatarGerd Hoffmann <kraxel@redhat.com>
parent cb1f8814
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -284,6 +284,8 @@ int drm_gem_vram_pin_locked(struct drm_gem_vram_object *gbo,
	int i, ret;
	struct ttm_operation_ctx ctx = { false, false };

	lockdep_assert_held(&gbo->bo.resv->lock.base);

	if (gbo->pin_count) {
		++gbo->pin_count;
		return 0;
@@ -361,6 +363,8 @@ int drm_gem_vram_unpin_locked(struct drm_gem_vram_object *gbo)
	int i, ret;
	struct ttm_operation_ctx ctx = { false, false };

	lockdep_assert_held(&gbo->bo.resv->lock.base);

	if (WARN_ON_ONCE(!gbo->pin_count))
		return 0;