mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] tty: goldfish: Use tty_port_destroy() to destroy port
@ 2022-03-28 11:58 Wang Weiyang
  2022-03-29  6:13 ` Jiri Slaby
  0 siblings, 1 reply; 2+ messages in thread
From: Wang Weiyang @ 2022-03-28 11:58 UTC (permalink / raw)
  To: gregkh, jirislaby, sheng, bruce.j.beare, xiaohui.xin,
	yunhong.jiang, arve
  Cc: linux-kernel, wangweiyang2

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: 666b7793d4bf ("goldfish: tty driver")
Signed-off-by: Wang Weiyang <wangweiyang2@huawei.com>
---
 drivers/tty/goldfish.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/tty/goldfish.c b/drivers/tty/goldfish.c
index ad13532e92fe..9e1168c39e77 100644
--- a/drivers/tty/goldfish.c
+++ b/drivers/tty/goldfish.c
@@ -405,6 +405,7 @@ static int goldfish_tty_probe(struct platform_device *pdev)
 err_tty_register_device_failed:
 	free_irq(irq, qtty);
 err_dec_line_count:
+	tty_port_destroy(&qtty->port);
 	goldfish_tty_current_line_count--;
 	if (goldfish_tty_current_line_count == 0)
 		goldfish_tty_delete_driver();
@@ -426,6 +427,7 @@ static int goldfish_tty_remove(struct platform_device *pdev)
 	iounmap(qtty->base);
 	qtty->base = NULL;
 	free_irq(qtty->irq, pdev);
+	tty_port_destroy(&qtty->port);
 	goldfish_tty_current_line_count--;
 	if (goldfish_tty_current_line_count == 0)
 		goldfish_tty_delete_driver();
-- 
2.17.1


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] tty: goldfish: Use tty_port_destroy() to destroy port
  2022-03-28 11:58 [PATCH] tty: goldfish: Use tty_port_destroy() to destroy port Wang Weiyang
@ 2022-03-29  6:13 ` Jiri Slaby
  0 siblings, 0 replies; 2+ messages in thread
From: Jiri Slaby @ 2022-03-29  6:13 UTC (permalink / raw)
  To: Wang Weiyang, gregkh, sheng, bruce.j.beare, xiaohui.xin,
	yunhong.jiang, arve
  Cc: linux-kernel

On 28. 03. 22, 13:58, Wang Weiyang wrote:
> 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().

Reviewed-by: Jiri Slaby <jirislaby@kernel.org>

> Fixes: 666b7793d4bf ("goldfish: tty driver")
> Signed-off-by: Wang Weiyang <wangweiyang2@huawei.com>
> ---
>   drivers/tty/goldfish.c | 2 ++
>   1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/tty/goldfish.c b/drivers/tty/goldfish.c
> index ad13532e92fe..9e1168c39e77 100644
> --- a/drivers/tty/goldfish.c
> +++ b/drivers/tty/goldfish.c
> @@ -405,6 +405,7 @@ static int goldfish_tty_probe(struct platform_device *pdev)
>   err_tty_register_device_failed:
>   	free_irq(irq, qtty);
>   err_dec_line_count:
> +	tty_port_destroy(&qtty->port);
>   	goldfish_tty_current_line_count--;
>   	if (goldfish_tty_current_line_count == 0)
>   		goldfish_tty_delete_driver();
> @@ -426,6 +427,7 @@ static int goldfish_tty_remove(struct platform_device *pdev)
>   	iounmap(qtty->base);
>   	qtty->base = NULL;
>   	free_irq(qtty->irq, pdev);
> +	tty_port_destroy(&qtty->port);
>   	goldfish_tty_current_line_count--;
>   	if (goldfish_tty_current_line_count == 0)
>   		goldfish_tty_delete_driver();

thanks,
-- 
js
suse labs

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-03-29  6:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-28 11:58 [PATCH] tty: goldfish: Use tty_port_destroy() to destroy port Wang Weiyang
2022-03-29  6:13 ` Jiri Slaby

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®