From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752077AbcFVHhy (ORCPT ); Wed, 22 Jun 2016 03:37:54 -0400 Received: from mail-lf0-f66.google.com ([209.85.215.66]:33593 "EHLO mail-lf0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751524AbcFVHhr (ORCPT ); Wed, 22 Jun 2016 03:37:47 -0400 Message-ID: <1466581044.3188.34.camel@gmail.com> Subject: Re: [patch V2 00/20] timer: Refactor the timer wheel From: Mike Galbraith To: Thomas Gleixner , LKML Cc: Ingo Molnar , Peter Zijlstra , "Paul E. McKenney" , Eric Dumazet , Frederic Weisbecker , Chris Mason , Arjan van de Ven , rt@linutronix.de, Rik van Riel , Linus Torvalds , George Spelvin , Len Brown Date: Wed, 22 Jun 2016 09:37:24 +0200 In-Reply-To: <20160617121134.417319325@linutronix.de> References: <20160617121134.417319325@linutronix.de> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.16.5 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 2016-06-17 at 13:26 +0000, Thomas Gleixner wrote: > This is the second version of the timer wheel rework series. The first series > can be found here: > > http://lkml.kernel.org/r/20160613070440.950649741@linutronix.de > > The series is also available in git: > > git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git WIP.timers FWIW, testing with ltp, I noticed a new failure in logs. It turns out to be intermittent, but the testcase mostly fails. rtbox:~ # /usr/local/ltp/conformance/interfaces/sigtimedwait/sigtimedwait_1-1.run-test Test FAILED: sigtimedwait() did not return in the required time time_elapsed: 1.197057 ...come on, you can do it... rtbox:~ # /usr/local/ltp/conformance/interfaces/sigtimedwait/sigtimedwait_1-1.run-test Test PASSED #define ERRORMARGIN 0.1 ... if ((time_elapsed > SIGTIMEDWAITSEC + ERRORMARGIN) || (time_elapsed < SIGTIMEDWAITSEC - ERRORMARGIN)) { printf("Test FAILED: sigtimedwait() did not return in " "the required time\n"); printf("time_elapsed: %lf\n", time_elapsed); return PTS_FAIL; } Looks hohum to me, but gripe did arrive with patch set, so you get a note. -Mike