From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752191AbbGDAGG (ORCPT ); Fri, 3 Jul 2015 20:06:06 -0400 Received: from v094114.home.net.pl ([79.96.170.134]:43060 "HELO v094114.home.net.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1756006AbbGDAF5 (ORCPT ); Fri, 3 Jul 2015 20:05:57 -0400 From: "Rafael J. Wysocki" To: Alan Stern Cc: Tomeu Vizoso , "linux-pm@vger.kernel.org" , Laurent Pinchart , Dmitry Torokhov , Len Brown , Pavel Machek , Greg Kroah-Hartman , Ulf Hansson , Kevin Hilman , Russell King , Krzysztof Kozlowski , "linux-kernel@vger.kernel.org" Subject: Re: [PATCH v3 2/2] PM / Runtime: Add pm_runtime_enable_recursive Date: Sat, 04 Jul 2015 02:32:19 +0200 Message-ID: <1582584.Qtpmv8yHCS@vostro.rjw.lan> User-Agent: KMail/4.11.5 (Linux/4.1.0-rc5+; KDE/4.11.5; x86_64; ; ) In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="utf-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Friday, July 03, 2015 11:11:19 AM Alan Stern wrote: > On Fri, 3 Jul 2015, Tomeu Vizoso wrote: > > > >> Yeah, that would remove the need for messing with the runtime PM > > >> enable status of descendant devices, but I wonder why Rafael went that > > >> way initially. > > > > > > I forget the details. Probably it was just to be safe. We probably > > > thought that if a device was disabled for runtime PM then its runtime > > > PM status might not be accurate. But if direct_complete is set then it > > > may be reasonable to assume that the runtime PM status _is_ accurate. > > > > Cool. > > > > Rafael and I briefly discussed ignore_children while the original > > > direct_complete patch was being designed. We didn't come to any > > > definite conclusion and decided to forget about it for the time being. > > > Maybe now would be a good time to reconsider it. > > > > I would prefer to have ignore_children ignore whether the children of > > a device were able to do direct_complete, rather than having a > > direct_complete_default flag (plus not requiring that all its > > descendants have runtime PM enabled). > > Okay, but remember that sometimes these "virtual" devices will exist > beneath a device that needs to have ignore_children off. So this won't > be a complete solution to your problem. > > Let's see what Rafael thinks about these two issues. It seems to me > that the hardest part is dealing with drivers/subsystems that have no > runtime PM support. In such cases, we have to be very careful not to > use direct_complete unless we know that the device does no power > management at all. Precisely. Thanks, Rafael