[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CANq1E4Sg32gGDZogA5VyU=jYq8ZX11XRxa0=Qm-=jyrj1zPdpQ@mail.gmail.com>
Date: Tue, 10 Feb 2015 13:28:12 +0100
From: David Herrmann <dh.herrmann@...il.com>
To: Nicholas Mc Guire <hofrat@...dl.org>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>
Cc: Jiri Slaby <jslaby@...e.cz>,
Daniel Vetter <daniel.vetter@...ll.ch>,
Adam Borowski <kilobyte@...band.pl>,
Peter Hurley <peter@...leysoftware.com>,
Imre Deak <imre.deak@...el.com>, Takashi Iwai <tiwai@...e.de>,
Peng Fan <van.freenix@...il.com>,
linux-kernel <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] vt: use msecs_to_jiffies for time conversion
Hi
On Mon, Feb 9, 2015 at 4:54 PM, Nicholas Mc Guire <hofrat@...dl.org> wrote:
> Converting milliseconds to jiffies by "val * HZ / 1000" is technically
> OK but msecs_to_jiffies(val) is the cleaner solution and handles all
> corner cases correctly. This is a minor API consolidation only and
> should make things more readable.
>
> Signed-off-by: Nicholas Mc Guire <hofrat@...dl.org>
Looks good to me:
Reviewed-by: David Herrmann <dh.herrmann@...il.com>
Thanks
David
> ---
>
> Patch was compile tested with x86_64_defconfig
> (implies CONFIG_HW_CONSOLE=y and CONFIG_VT=y)
>
> Patch is against 3.19.0-rc7 (localversion-next is -next-20150209)
>
> drivers/tty/vt/vt.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c
> index 6e00572..ea7ba03 100644
> --- a/drivers/tty/vt/vt.c
> +++ b/drivers/tty/vt/vt.c
> @@ -1573,7 +1573,7 @@ static void setterm_command(struct vc_data *vc)
> case 11: /* set bell duration in msec */
> if (vc->vc_npar >= 1)
> vc->vc_bell_duration = (vc->vc_par[1] < 2000) ?
> - vc->vc_par[1] * HZ / 1000 : 0;
> + msecs_to_jiffies(vc->vc_par[1]) : 0;
> else
> vc->vc_bell_duration = DEFAULT_BELL_DURATION;
> break;
> --
> 1.7.10.4
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists