Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754310AbcJKSuI (ORCPT ); Tue, 11 Oct 2016 14:50:08 -0400 Received: from rhlx01.hs-esslingen.de ([129.143.116.10]:48558 "EHLO rhlx01.hs-esslingen.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754179AbcJKSuD (ORCPT ); Tue, 11 Oct 2016 14:50:03 -0400 Date: Tue, 11 Oct 2016 20:25:41 +0200 From: Andreas Mohr To: Thomas Gleixner Cc: Douglas Anderson , John Stultz , Andreas Mohr , briannorris@chromium.org, huangtao@rock-chips.com, tony.xie@rock-chips.com, linux-rockchip@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2] timers: Fix usleep_range() in the context of wake_up_process() Message-ID: <20161011182541.GA32165@rhlx01.hs-esslingen.de> References: <1476133442-17757-1-git-send-email-dianders@chromium.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Priority: none User-Agent: Mutt/1.7.0 (2016-08-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1712 Lines: 44 On Tue, Oct 11, 2016 at 09:14:38AM +0200, Thomas Gleixner wrote: > On Mon, 10 Oct 2016, Douglas Anderson wrote: > > Users of usleep_range() expect that it will _never_ return in less time > > than the minimum passed parameter. However, nothing in any of the code > > ensures this. Specifically: > > There is no such guarantee for that interface and never has been, so how > did you make sure that none of the existing users is relying on this? > > You can't just can't just declare that all all of the users expect that and > be done with it. Hmm, somehow I don't manage to follow these thoughts. https://www.kernel.org/doc/htmldocs/device-drivers/API-usleep-range.html (as a hopefully sufficiently authoritative source of documentation) clearly specifies min to be "Minimum time in usecs to sleep" , which is what one would expect a two-param interface here to be (minimum-maximum), i.e. what would be the *natural* protocol I'd think. Also, [finally...] starting to enforce the minimum time is an additional *constraint* on the protocol, i.e. it's not at all like we are getting more *liberal* here (since usually getting more liberal in certain protocols is what will cause trouble, I'd think). Not to mention that desiring a delay in processing most certainly is what caused users of this API to decide to invoke it in the first place (else they would just have chosen to carry on with delay-less processing and be done with it). And those users then surely wouldn't want to experience a behaviour where the delay may be ended at any time, however short that may end up being. A related topic probably is premature wakeups (e.g. signal-induced) of select() etc. protocol. Greetings, Andreas Mohr