tty: Make get_current_tty use a kref
[deliverable/linux.git] / drivers / s390 / char / fs3270.c
index d18e6d2e0b49dbac1f63d8a62483326ea7a1dea7..3ef5425d0eb834063f46f0714828ba5461f4694d 100644 (file)
@@ -430,11 +430,12 @@ fs3270_open(struct inode *inode, struct file *filp)
                mutex_lock(&tty_mutex);
                tty = get_current_tty();
                if (!tty || tty->driver->major != IBM_TTY3270_MAJOR) {
-                       mutex_unlock(&tty_mutex);
+                       tty_kref_put(tty);
                        rc = -ENODEV;
                        goto out;
                }
                minor = tty->index + RAW3270_FIRSTMINOR;
+               tty_kref_put(tty);
                mutex_unlock(&tty_mutex);
        }
        /* Check if some other program is already using fullscreen mode. */
This page took 0.026448 seconds and 5 git commands to generate.