Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0f1cb1bd authored by Ilija Hadzic's avatar Ilija Hadzic Committed by Dave Airlie
Browse files

drm: restore open_count if drm_setup fails



If drm_setup (called at first open) fails, the whole
open call has failed, so we should not keep the
open_count incremented.

Signed-off-by: default avatarIlija Hadzic <ihadzic@research.bell-labs.com>
Cc: stable@vger.kernel.org
Reviewed-by: default avatarThomas Hellstrom <thellstrom@vmware.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 3d70f8c6
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -135,8 +135,11 @@ int drm_open(struct inode *inode, struct file *filp)
	retcode = drm_open_helper(inode, filp, dev);
	if (!retcode) {
		atomic_inc(&dev->counts[_DRM_STAT_OPENS]);
		if (!dev->open_count++)
		if (!dev->open_count++) {
			retcode = drm_setup(dev);
			if (retcode)
				dev->open_count--;
		}
	}
	if (!retcode) {
		mutex_lock(&dev->struct_mutex);