From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754950Ab0IHOam (ORCPT ); Wed, 8 Sep 2010 10:30:42 -0400 Received: from www.tglx.de ([62.245.132.106]:35083 "EHLO www.tglx.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751446Ab0IHOal (ORCPT ); Wed, 8 Sep 2010 10:30:41 -0400 Date: Wed, 8 Sep 2010 16:30:07 +0200 (CEST) From: Thomas Gleixner To: Joakim Tjernlund cc: Eric Dumazet , linux-kernel@vger.kernel.org, Peter Zijlstra Subject: Re: slow nanosleep? In-Reply-To: Message-ID: References: <1283932600.2880.1.camel@edumazet-laptop> <1283934289.2880.12.camel@edumazet-laptop> <1283950818.23762.20.camel@laptop> User-Agent: Alpine 2.00 (LFD 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 8 Sep 2010, Joakim Tjernlund wrote: > Thomas Gleixner wrote on 2010/09/08 15:52:23: > > On Wed, 8 Sep 2010, Joakim Tjernlund wrote: > > > > > > Actually, it takes 120 us. The 20 us was when I had Thomas > > > timeout == 0 fast path patch applied(forgot to remove it). > > > Without that patch it takes about 115 us. So it seems it takes > > > 115-20=95 us to turn the timer wheel on my ppc. > > > > You might fire up the tracer to look where it spends that time. > > This helps for short(1 ns) nanosleeps, sleeps for 25 us. No idea > if this is any good, just tossing it out for you to tear apart :) > > diff --git a/kernel/hrtimer.c b/kernel/hrtimer.c > index 5c69e99..e612016 100644 > --- a/kernel/hrtimer.c > +++ b/kernel/hrtimer.c > @@ -1545,6 +1545,9 @@ long __sched hrtimer_nanosleep_restart(struct restart_block *restart) > HRTIMER_MODE_ABS); > hrtimer_set_expires_tv64(&t.timer, restart->nanosleep.expires); > > + if (!hrtimer_active(&t.timer)) > + goto out; That actually will return for any expiry time. The timer is armed in do_nanosleep() not in hrtimer_set_expires_tv64() / hrtimer_set_expires_range_ns() Thanks, tglx