mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-03 09:41:54 +09:00
TTY: drop driver reference in tty_open fail path
commitc290f8358aupstream. When tty_driver_lookup_tty fails in tty_open, we forget to drop a reference to the tty driver. This was added by commit4a2b5fddd5(Move tty lookup/reopen to caller). Fix that by adding tty_driver_kref_put to the fail path. I will refactor the code later. This is for the ease of backporting to stable. Introduced-in: v2.6.28-rc2 Signed-off-by: Jiri Slaby <jslaby@suse.cz> Cc: Alan Cox <alan@lxorguk.ukuu.org.uk> Acked-by: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
436318f9b4
commit
bebd46c74c
@@ -1872,6 +1872,7 @@ got_driver:
|
||||
if (IS_ERR(tty)) {
|
||||
tty_unlock();
|
||||
mutex_unlock(&tty_mutex);
|
||||
tty_driver_kref_put(driver);
|
||||
return PTR_ERR(tty);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user