]> git.baikalelectronics.ru Git - kernel.git/commit
tty: goldfish: Use tty_port_destroy() to destroy port
authorWang Weiyang <wangweiyang2@huawei.com>
Mon, 28 Mar 2022 11:58:44 +0000 (19:58 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 15 Apr 2022 06:42:21 +0000 (08:42 +0200)
commit72539931f3a81a8e06793081803285abe5d6d33a
treec65822398998f7b851604932b239db6d46346ea7
parent6a7df9e56c9b55107d6c846af5ce5c808d183db5
tty: goldfish: Use tty_port_destroy() to destroy port

In goldfish_tty_probe(), the port initialized through tty_port_init()
should be destroyed in error paths.In goldfish_tty_remove(), qtty->port
also should be destroyed or else might leak resources.

Fix the above by calling tty_port_destroy().

Fixes: 81070c22d1a5 ("goldfish: tty driver")
Reviewed-by: Jiri Slaby <jirislaby@kernel.org>
Signed-off-by: Wang Weiyang <wangweiyang2@huawei.com>
Link: https://lore.kernel.org/r/20220328115844.86032-1-wangweiyang2@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/goldfish.c