Received: by 2002:a05:6a10:206:0:0:0:0 with SMTP id 6csp4160344pxj; Tue, 8 Jun 2021 07:51:30 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwOrpiAYbXeNARpc79MessX9DdqjW0UfMKAg/xwaQwKB5aeyneZUYaacOxUAwHtvEKkOEYA X-Received: by 2002:aa7:c84a:: with SMTP id g10mr25591584edt.326.1623163890572; Tue, 08 Jun 2021 07:51:30 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1623163890; cv=none; d=google.com; s=arc-20160816; b=ObAN1SuWSbiJhpq99oK309Bpus/IdIWzdosZJjpcZ0qbKoe3gPsLLRierfGvy1yk1g OZLn/v+ynYgultqsuJrbCjoyghy09ooyt6R1g7SJeF6u3KLxaMMepDXWQHd6DVQVcmwx tNgWIczMXLPpLaucR1jz3SswSMVEkQWvIfYF4lRwB9LsrELhS/xi7MdTvsD/c1nwC+Dn sqcxN6Exq82jokXzYXuwe9PhkmWCEFAs7+qsLq4yU+zwvJ9zWylr8AP3LITr94yT+ABm s81GdI0628QZlxQ24KoC/iw0VCYKM3LTo2vrZDf55gh+CE9XYgAbm4u/Oe97/wWeq3q1 SVmg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=pTmkhK6mBM3Db1SoKzEN2G4DYQthUnreMgi3TiPuU1Q=; b=GaCH+E4L81HjGKn1SlVnKSEjbaio4/BqMPhSSSnfTXxWLE7o3K6M9e1wKPgyGc7MLy JYxxpk7PY82oWHU71To7r3qHo4G5gSGHuvel+kq7ezQg908QTBAMUSczTqmqZ9sDfKhn dbNE/Rm89PSMqcCA3mWZ+B/cqdtOeFEdDELsIkzqN4Ci+iqWJyeGeRtJKmovk+pT6G2P BEszcG93roGQRlzGGTzOkuOnUPUcqVpZB/IUgVsOTj729XmHvMQvT66xDJY/6LWa7hoy BqmlOUCcU30EWh+mbuE0m0/Ecsvfz+VBaRiHMNKURmfAT5onvIthpNimb51zIaa2jhdU 2Mug== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id p10si15382505edy.258.2021.06.08.07.51.06; Tue, 08 Jun 2021 07:51:30 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233505AbhFHOu7 (ORCPT + 99 others); Tue, 8 Jun 2021 10:50:59 -0400 Received: from netrider.rowland.org ([192.131.102.5]:46905 "HELO netrider.rowland.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S233576AbhFHOu6 (ORCPT ); Tue, 8 Jun 2021 10:50:58 -0400 Received: (qmail 1806040 invoked by uid 1000); 8 Jun 2021 10:49:05 -0400 Date: Tue, 8 Jun 2021 10:49:05 -0400 From: Alan Stern To: Ulf Hansson Cc: "Rafael J . Wysocki" , Linux PM , Saravana Kannan , Adrian Hunter , Tony Lindgren , Kevin Hilman , Geert Uytterhoeven , Linux ARM , Linux Kernel Mailing List Subject: Re: [PATCH v2 3/3] PM: runtime: Clarify documentation when callbacks are unassigned Message-ID: <20210608144905.GE1804083@rowland.harvard.edu> References: <20210608090250.85256-1-ulf.hansson@linaro.org> <20210608090250.85256-4-ulf.hansson@linaro.org> <20210608142325.GC1804083@rowland.harvard.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jun 08, 2021 at 04:30:48PM +0200, Ulf Hansson wrote: > On Tue, 8 Jun 2021 at 16:23, Alan Stern wrote: > > > > On Tue, Jun 08, 2021 at 11:02:50AM +0200, Ulf Hansson wrote: > > > Recent changes to the PM core allows ->runtime_suspend|resume callbacks to > > > be unassigned. > > > > > > In the earlier behaviour the PM core would return -ENOSYS, when trying to > > > runtime resume a device, for example. Let's update the documentation to > > > clarify this. > > > > > > Signed-off-by: Ulf Hansson > > > --- > > > > > > Changes in v2: > > > - Added a new patch for the updating the docs, as pointed out by Alan. > > > > > > --- > > > Documentation/power/runtime_pm.rst | 8 ++++++++ > > > 1 file changed, 8 insertions(+) > > > > > > diff --git a/Documentation/power/runtime_pm.rst b/Documentation/power/runtime_pm.rst > > > index 18ae21bf7f92..3d09c9fd450d 100644 > > > --- a/Documentation/power/runtime_pm.rst > > > +++ b/Documentation/power/runtime_pm.rst > > > @@ -827,6 +827,14 @@ or driver about runtime power changes. Instead, the driver for the device's > > > parent must take responsibility for telling the device's driver when the > > > parent's power state changes. > > > > > > +Note that, in some cases it may not be desirable for subsystems/drivers to call More than 80 chars. > > > +pm_runtime_no_callbacks() for their devices. This could be because a subset of More than 80 chars. > > > +the runtime PM callbacks needs to be implemented, a platform dependent PM > > > +domain could get attached to the device or that the device is power manged s/manged/managed/ > > > +through a supplier device link. For these reasons and to avoid boilerplate code More than 80 chars. > > > +in subsystems/drivers, the PM core allows runtime PM callbacks to be > > > +unassigned. > > > + > > > > You should also mention that if a callback pointer is NULL, the > > runtime PM core will act as though there was a callback and it > > returned 0. That's an important consideration. > > Good point, let me add it. > > I send a new version of $subject patch, unless Rafael is happy to do > the amending when/if applying? > > > > > Also, notice that this file was carefully edited to make sure that > > none of the lines exceed 80 characters. Your new addition should > > be the same. > > Absolutely, but it should be okay already, no? See above. Alan