Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964813AbbBJM2P (ORCPT ); Tue, 10 Feb 2015 07:28:15 -0500 Received: from mail-ie0-f170.google.com ([209.85.223.170]:40903 "EHLO mail-ie0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755422AbbBJM2N (ORCPT ); Tue, 10 Feb 2015 07:28:13 -0500 MIME-Version: 1.0 In-Reply-To: <1423497250-3390-1-git-send-email-hofrat@osadl.org> References: <1423497250-3390-1-git-send-email-hofrat@osadl.org> Date: Tue, 10 Feb 2015 13:28:12 +0100 Message-ID: Subject: Re: [PATCH] vt: use msecs_to_jiffies for time conversion From: David Herrmann To: Nicholas Mc Guire , Greg Kroah-Hartman Cc: Jiri Slaby , Daniel Vetter , Adam Borowski , Peter Hurley , Imre Deak , Takashi Iwai , Peng Fan , linux-kernel Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1698 Lines: 48 Hi On Mon, Feb 9, 2015 at 4:54 PM, Nicholas Mc Guire 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 Looks good to me: Reviewed-by: David Herrmann 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@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/