From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dmitry Torokhov Subject: Re: [PATCH 3/4] PM / OPP: take RCU lock in dev_pm_opp_get_opp_count Date: Wed, 17 Dec 2014 09:28:42 -0800 Message-ID: <3741028.CtOSUWyiaT@dtor-glaptop> References: <1418771379-24369-1-git-send-email-dtor@chromium.org> <1418771379-24369-4-git-send-email-dtor@chromium.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Return-path: Received: from mail-ie0-f172.google.com ([209.85.223.172]:52823 "EHLO mail-ie0-f172.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750885AbaLQR2o (ORCPT ); Wed, 17 Dec 2014 12:28:44 -0500 Received: by mail-ie0-f172.google.com with SMTP id tr6so15416186ieb.31 for ; Wed, 17 Dec 2014 09:28:44 -0800 (PST) In-Reply-To: Sender: linux-pm-owner@vger.kernel.org List-Id: linux-pm@vger.kernel.org To: Viresh Kumar Cc: Paul McKenney , "Rafael J. Wysocki" , Thomas Petazzoni , Geert Uytterhoeven , Stefan Wahren , Paul Gortmaker , Nishanth Menon , "linux-pm@vger.kernel.org" , Linux Kernel Mailing List On Wednesday, December 17, 2014 10:06:17 AM Viresh Kumar wrote: > On 17 December 2014 at 04:39, Dmitry Torokhov wrote: > > A lot of callers are missing the fact that dev_pm_opp_get_opp_count > > needs to be called under RCU lock. Given that RCU locks can safely be > > nested, instead of providing *_locked() API, let's take RCU lock inside > > Hmm, I asked for a *_locked() API because many users of > dev_pm_opp_get_opp_count() are already calling it from rcu read side > critical sections. > > Now, there are two questions: > - Can rcu-read side critical sections be nested ? > > Yes, this is what the comment over rcu_read_lock() says > > * RCU read-side critical sections may be nested. Any deferred actions > * will be deferred until the outermost RCU read-side critical section > * completes. > > - Would it be better to drop these double rcu_read_locks() ? i.e. either > get a *_locked() API or fix the callers of dev_pm_opp_get_opp_count(). > > @Paul: What do you say ? > FWIW the change is a stop-gap; I hope we'll get away from using dev_pm_opp_get_opp_count() in cpufreq drivers and then we can revert the change. I just did not want to touch cpufreq drivers unless necessary. Thanks, Dmitry