From: Kevin Hilman <khilman@deeprootsystems.com>
To: "Rafael J. Wysocki" <rjw@sisk.pl>
Cc: Nishanth Menon <nm@ti.com>,
linux-pm <linux-pm@lists.linux-foundation.org>,
lkml <linux-kernel@vger.kernel.org>,
linux-arm <linux-arm-kernel@lists.infradead.org>,
linux-omap <linux-omap@vger.kernel.org>,
Paul <paulmck@linux.vnet.ibm.com>
Subject: Re: [PATCH v5] power: introduce library for device-specific OPPs
Date: Tue, 05 Oct 2010 13:50:14 -0700 [thread overview]
Message-ID: <8739skpdo9.fsf@deeprootsystems.com> (raw)
In-Reply-To: <201010052244.11403.rjw@sisk.pl> (Rafael J. Wysocki's message of "Tue, 5 Oct 2010 22:44:11 +0200")
"Rafael J. Wysocki" <rjw@sisk.pl> writes:
> On Tuesday, October 05, 2010, Nishanth Menon wrote:
>> Rafael J. Wysocki had written, on 10/04/2010 05:36 PM, the following:
>> > On Friday, October 01, 2010, Nishanth Menon wrote:
[...]
>> >
>> > I'm not really sure why so many mutexes are needed here. I don't think you
>> > need a separate mutex in every struct device_opp object. I'd just use
>> > dev_opp_list_lock for everything.
>>
>> I did consider using dev_opp_list_lock to lock everything *but* here is
>> the contention:
>>
>> dev_opp_list_lock locks modification for addition of domains device.
>> This operation happens usually during init stage.
>>
>> each domain device has multiple opps, new opps can be added, but the
>> more often usage will probably be opp_enable and disable. domain are
>> usually modifiable independent of each other - device_opp->lock provides
>> device level lock allowing for each domain device opp list to be
>> modified independent of each other. e.g. on thermal overage we may
>> choose to lower mpu domain while a coprocessor driver in parallel might
>> choose to disable co-processor domain in parallel.
>>
>> Wondering why you'd like a single lock for all domains and restrict
>> parallelization?
>
> Because of the simplicity, mostly. If there's only a relatively short period
> when the lock will be contended for, that still is not too bad and it's much
> easier to get the synchronization right with just one lock for starters.
FWIW, I agree with Rafael
These are not going be highly contended locks, and the lock durations
are very short, so simplifying the locking is a big win for readability.
Kevin
WARNING: multiple messages have this Message-ID (diff)
From: khilman@deeprootsystems.com (Kevin Hilman)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v5] power: introduce library for device-specific OPPs
Date: Tue, 05 Oct 2010 13:50:14 -0700 [thread overview]
Message-ID: <8739skpdo9.fsf@deeprootsystems.com> (raw)
In-Reply-To: <201010052244.11403.rjw@sisk.pl> (Rafael J. Wysocki's message of "Tue, 5 Oct 2010 22:44:11 +0200")
"Rafael J. Wysocki" <rjw@sisk.pl> writes:
> On Tuesday, October 05, 2010, Nishanth Menon wrote:
>> Rafael J. Wysocki had written, on 10/04/2010 05:36 PM, the following:
>> > On Friday, October 01, 2010, Nishanth Menon wrote:
[...]
>> >
>> > I'm not really sure why so many mutexes are needed here. I don't think you
>> > need a separate mutex in every struct device_opp object. I'd just use
>> > dev_opp_list_lock for everything.
>>
>> I did consider using dev_opp_list_lock to lock everything *but* here is
>> the contention:
>>
>> dev_opp_list_lock locks modification for addition of domains device.
>> This operation happens usually during init stage.
>>
>> each domain device has multiple opps, new opps can be added, but the
>> more often usage will probably be opp_enable and disable. domain are
>> usually modifiable independent of each other - device_opp->lock provides
>> device level lock allowing for each domain device opp list to be
>> modified independent of each other. e.g. on thermal overage we may
>> choose to lower mpu domain while a coprocessor driver in parallel might
>> choose to disable co-processor domain in parallel.
>>
>> Wondering why you'd like a single lock for all domains and restrict
>> parallelization?
>
> Because of the simplicity, mostly. If there's only a relatively short period
> when the lock will be contended for, that still is not too bad and it's much
> easier to get the synchronization right with just one lock for starters.
FWIW, I agree with Rafael
These are not going be highly contended locks, and the lock durations
are very short, so simplifying the locking is a big win for readability.
Kevin
next prev parent reply other threads:[~2010-10-05 20:50 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-10-01 11:39 [PATCH v5] power: introduce library for device-specific OPPs Nishanth Menon
2010-10-01 11:39 ` Nishanth Menon
2010-10-04 22:36 ` Rafael J. Wysocki
2010-10-04 22:36 ` Rafael J. Wysocki
2010-10-04 22:45 ` Rafael J. Wysocki
2010-10-04 22:45 ` Rafael J. Wysocki
2010-10-04 22:45 ` Rafael J. Wysocki
2010-10-05 13:05 ` Nishanth Menon
2010-10-05 13:05 ` Nishanth Menon
2010-10-05 13:05 ` Nishanth Menon
2010-10-05 20:44 ` Rafael J. Wysocki
2010-10-05 20:44 ` Rafael J. Wysocki
2010-10-05 20:50 ` Kevin Hilman [this message]
2010-10-05 20:50 ` Kevin Hilman
2010-10-05 21:03 ` Nishanth Menon
2010-10-05 21:03 ` Nishanth Menon
2010-10-05 21:03 ` Nishanth Menon
2010-10-05 20:50 ` Kevin Hilman
2010-10-05 20:44 ` Rafael J. Wysocki
2010-10-05 13:05 ` Nishanth Menon
2010-10-04 22:36 ` Rafael J. Wysocki
-- strict thread matches above, loose matches on Subject: below --
2010-10-01 11:39 Nishanth Menon
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8739skpdo9.fsf@deeprootsystems.com \
--to=khilman@deeprootsystems.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=linux-pm@lists.linux-foundation.org \
--cc=nm@ti.com \
--cc=paulmck@linux.vnet.ibm.com \
--cc=rjw@sisk.pl \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.