[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20191217082838.GB2672708@kroah.com>
Date: Tue, 17 Dec 2019 09:28:38 +0100
From: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
To: Uwe Kleine-König
<u.kleine-koenig@...gutronix.de>
Cc: Jacek Anaszewski <jacek.anaszewski@...il.com>,
Pavel Machek <pavel@....cz>, Dan Murphy <dmurphy@...com>,
Jiri Slaby <jslaby@...e.com>, linux-kernel@...r.kernel.org,
linux-leds@...r.kernel.org, linux-serial@...r.kernel.org,
kernel@...gutronix.de
Subject: Re: [PATCH v2 2/3] tty: new helper function tty_get_icount()
On Tue, Dec 17, 2019 at 09:17:17AM +0100, Uwe Kleine-König wrote:
> For a given struct tty_struct this yields the corresponding statistics
> about sent and received characters (and some more)
Why?
>
> Use the function to simplify tty_tiocgicount().
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@...gutronix.de>
> ---
> drivers/tty/tty_io.c | 20 ++++++++++++++++----
> include/linux/tty.h | 2 ++
> 2 files changed, 18 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c
> index 584025117cd3..df3942eb3468 100644
> --- a/drivers/tty/tty_io.c
> +++ b/drivers/tty/tty_io.c
> @@ -2497,15 +2497,27 @@ static int tty_tiocmset(struct tty_struct *tty, unsigned int cmd,
> return tty->ops->tiocmset(tty, set, clear);
> }
>
> +int tty_get_icount(struct tty_struct *tty,
> + struct serial_icounter_struct *icount)
kerneldoc?
> +{
> + memset(icount, 0, sizeof(*icount));
> +
> + if (tty->ops->get_icount)
> + return tty->ops->get_icount(tty, icount);
> + else
> + return -EINVAL;
> +}
> +EXPORT_SYMBOL(tty_get_icount);
EXPORT_SYMBOL_GPL() please.
thanks,
greg k-h
Powered by blists - more mailing lists