From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932525AbdJaKT0 (ORCPT ); Tue, 31 Oct 2017 06:19:26 -0400 Received: from fllnx209.ext.ti.com ([198.47.19.16]:52873 "EHLO fllnx209.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932362AbdJaKTX (ORCPT ); Tue, 31 Oct 2017 06:19:23 -0400 Subject: Re: [PATCH] PM / QoS: Fix default runtime_pm device resume latency To: "Rafael J. Wysocki" CC: "Rafael J. Wysocki" , Linux PM , Linux Kernel Mailing List References: <1509347446-26105-1-git-send-email-t-kristo@ti.com> <3227682.nATp9NGxKU@aspire.rjw.lan> <0bb15d6d-3353-90d7-8335-200dd9790632@ti.com> From: Tero Kristo Message-ID: Date: Tue, 31 Oct 2017 12:18:39 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset="utf-8"; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 31/10/17 10:40, Rafael J. Wysocki wrote: > On Tue, Oct 31, 2017 at 8:13 AM, Tero Kristo wrote: >> On 31/10/17 01:27, Rafael J. Wysocki wrote: >>> >>> On Monday, October 30, 2017 11:19:08 AM CET Rafael J. Wysocki wrote: >>>> >>>> On Mon, Oct 30, 2017 at 8:10 AM, Tero Kristo wrote: >>>>> >>>>> The recent change to the PM QoS framework to introduce a proper >>>>> no constraint value overlooked to handle the devices which don't >>>>> implement PM QoS OPS. Runtime PM is one of the more severely >>>>> impacted subsystems, failing every attempt to runtime suspend >>>>> a device. This leads into some nasty second level issues like >>>>> probe failures and increased power consumption among other things. >>>> >>>> >>>> Oh, that's bad. >>>> >>>> Sorry about breaking it and thanks for the fix! >>>> >>>>> Fix this by adding a proper return value for devices that don't >>>>> implement PM QoS implicitly. >>>>> >>>>> Fixes: 0cc2b4e5a020 ("PM / QoS: Fix device resume latency PM QoS") >>>>> Signed-off-by: Tero Kristo >>>>> Cc: Rafael J. Wysocki >>>> >>>> >>>> Applied. >>> >>> >>> And pushed to Linus. >>> >>> That said, probe shouldn't ever fail if PM QoS is set to the >>> "never suspend" value. >>> >>> User space can set it that way, after all, so the drivers that fail to >>> probe >>> in that case aren't correct I'm afraid. >> >> >> Ok interesting. The probe failure we had was a second order issue. A driver >> (omap_nmailbox) was attempting to pm_runtime_get_sync() ...put_sync() during >> probe, and checked the return value of pm_runtime_put_sync() which was >> -EPERM and bailed out. Most of the time, drivers don't check the return >> value of this and will just succeed. I did a grep on kernel and there are >> few other drivers that check the return value also, didn't check if they do >> this during probe though but it can potentially cause various issues >> elsewhere also. >> >> So, you are saying we should not check the return value of >> pm_runtime_put_x() ever, or should check if it is -EPERM and just pass in >> that case? > > The latter. > >> Is there any point returning -EPERM from the runtime core at all >> then? This should probably be filtered out within runtime core as a valid >> situation and just return 0. > > Fair point. > > However, there are other situations in which pm_runtime_put_sync() can > return an error code which needs to be checked, like -EBUSY or -EAGAIN > returned if one of the reference counters is nonzero. > > In fact, the "no suspend" PM QoS constraint is somewhat similar to > this situation, so what about changing the error code returned to > -EAGAIN, for example? Ok yea thats true. Its better to leave the decision to the drivers as the core most likely can't know what the driver will actually want to do with a prevented pm_runtime_put. That way the policy can be implemented on case-by-case basis. Keeping the -EPERM in place is probably also just fine, if someone needs a detailed info of what prevented the pm_runtime_put from finishing properly, and if someone is using this value already. -Tero -- Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki. Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki