Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758710Ab1DYRfY (ORCPT ); Mon, 25 Apr 2011 13:35:24 -0400 Received: from smtp1.linux-foundation.org ([140.211.169.13]:60591 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758666Ab1DYRfX convert rfc822-to-8bit (ORCPT ); Mon, 25 Apr 2011 13:35:23 -0400 MIME-Version: 1.0 In-Reply-To: <20110425172644.GA20689@redhat.com> References: <20110418134421.GA15951@redhat.com> <20110418173224.GA27918@redhat.com> <20110423175901.GA484@redhat.com> <20110423175922.GB484@redhat.com> <20110425113746.GM17734@mtj.dyndns.org> <20110425172644.GA20689@redhat.com> From: Linus Torvalds Date: Mon, 25 Apr 2011 10:34:30 -0700 Message-ID: Subject: Re: [PATCH 1/3] signal: sys_rt_sigtimedwait: simplify the timeout logic To: Oleg Nesterov Cc: Tejun Heo , Andrew Morton , "Nikita V. Youshchenko" , Matt Fleming , linux-kernel@vger.kernel.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1140 Lines: 27 On Mon, Apr 25, 2011 at 10:26 AM, Oleg Nesterov wrote: > > If only I knew what this comment could say except > > ? ? ? ?/* Why do we add (tv_sec || tv_nsec) ? ?*/ > > I'd better send 4/3 which simply removes this (I hope) unneeded code. It's to guarantee that timeout is at least one tick more than asked for, because the rule is that you really have to wait for AT LEAST the time asked for. With the "zero timeout" being special, since that is "immediate". Imagine that you ask for one timer tick - but that you're in the _middle_ of the current one. Waiting for the next timer is going to be too short - you'll only get half a timer tick. So we need to ask for "ceiling(nanoseconds / nanosecondspertick) + 1" to make sure that we really wait _longer_ than asked for. So "+ (tv_sec || tv_nsec)" is just the "+1" for the "not zero timeout" case. Linus -- 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/