From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Morton Subject: Re: [PATCH] hrtimer: make epoll_wait() use the hrtimer range feature Date: Thu, 26 Aug 2010 15:31:56 -0700 Message-ID: <20100826153156.9ca92942.akpm@linux-foundation.org> References: <1281307532-3235-1-git-send-email-shawn.bohrer@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Alexander Viro , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, Davide Libenzi To: Shawn Bohrer Return-path: In-Reply-To: <1281307532-3235-1-git-send-email-shawn.bohrer@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org I'd say this is an epoll patch, not an hrtimer patch. So I renamed it to "epoll: make epoll_wait() use the hrtimer range feature". Davide looks after epoll, so let's cc him. On Sun, 8 Aug 2010 17:45:32 -0500 Shawn Bohrer wrote: > This make epoll use hrtimers for the timeout value which prevents > epoll_wait() from timing out up to a millisecond early. > > This mirrors the behavior of select() and poll(). > > ... > > --- a/fs/eventpoll.c > +++ b/fs/eventpoll.c Davide stuff ;) > --- a/fs/select.c > +++ b/fs/select.c > @@ -67,7 +67,7 @@ static long __estimate_accuracy(struct timespec *tv) > return slack; > } > > -static long estimate_accuracy(struct timespec *tv) > +long estimate_accuracy(struct timespec *tv) "estimate_accuracy" is a rotten name for a global symbol. I queued a preparatory patch which renames this to "select_estimate_accuracy".