* [PATCH] PM / OPP: discard duplicate OPP additions
@ 2014-05-13 7:41 [Chander Kashyap
2014-05-13 8:22 ` Viresh Kumar
` (2 more replies)
0 siblings, 3 replies; 31+ messages in thread
From: [Chander Kashyap @ 2014-05-13 7:41 UTC (permalink / raw)
To: linux-pm, linux-kernel
Cc: rjw, pavel, len.brown, gregkh, viresh.kumar, Chander Kashyap,
Inderpal Singh
From: Chander Kashyap <k.chander@samsung.com>
It may be possible to unregister and re-register the cpufreq driver.
One such example is arm big-little IKS cpufreq driver. While
re-registering the driver, same OPPs may get added again.
This patch detects the duplicacy and discards them.
Signed-off-by: Chander Kashyap <k.chander@samsung.com>
Signed-off-by: Inderpal Singh <inderpal.s@samsung.com>
---
drivers/base/power/opp.c | 28 +++++++++++++++++++---------
1 file changed, 19 insertions(+), 9 deletions(-)
diff --git a/drivers/base/power/opp.c b/drivers/base/power/opp.c
index 2553867..2e803a9 100644
--- a/drivers/base/power/opp.c
+++ b/drivers/base/power/opp.c
@@ -443,23 +443,33 @@ int dev_pm_opp_add(struct device *dev, unsigned long freq, unsigned long u_volt)
new_opp->u_volt = u_volt;
new_opp->available = true;
- /* Insert new OPP in order of increasing frequency */
+ /*
+ * Insert new OPP in order of increasing frequency
+ * and discard if already present
+ */
head = &dev_opp->opp_list;
list_for_each_entry_rcu(opp, &dev_opp->opp_list, node) {
- if (new_opp->rate < opp->rate)
+ if (new_opp->rate <= opp->rate)
break;
else
head = &opp->node;
}
- list_add_rcu(&new_opp->node, head);
- mutex_unlock(&dev_opp_list_lock);
+ if (new_opp->rate != opp->rate) {
+ list_add_rcu(&new_opp->node, head);
+ mutex_unlock(&dev_opp_list_lock);
+
+ /*
+ * Notify the changes in the availability of the operable
+ * frequency/voltage list.
+ */
+ srcu_notifier_call_chain(&dev_opp->head,
+ OPP_EVENT_ADD, new_opp);
+ } else {
+ mutex_unlock(&dev_opp_list_lock);
+ kfree(new_opp);
+ }
- /*
- * Notify the changes in the availability of the operable
- * frequency/voltage list.
- */
- srcu_notifier_call_chain(&dev_opp->head, OPP_EVENT_ADD, new_opp);
return 0;
}
EXPORT_SYMBOL_GPL(dev_pm_opp_add);
--
1.7.9.5
^ permalink raw reply related [flat|nested] 31+ messages in thread
* Re: [PATCH] PM / OPP: discard duplicate OPP additions
2014-05-13 7:41 [PATCH] PM / OPP: discard duplicate OPP additions [Chander Kashyap
@ 2014-05-13 8:22 ` Viresh Kumar
2014-05-13 10:30 ` Sudeep Holla
2014-05-13 13:41 ` Nishanth Menon
2014-05-13 13:23 ` Nishanth Menon
2014-05-14 15:02 ` [PATCH] " Pavel Machek
2 siblings, 2 replies; 31+ messages in thread
From: Viresh Kumar @ 2014-05-13 8:22 UTC (permalink / raw)
To: [Chander Kashyap
Cc: linux-pm@vger.kernel.org, Linux Kernel Mailing List,
Rafael J. Wysocki, Pavel Machek, Brown, Len, Greg Kroah-Hartman,
Chander Kashyap, Inderpal Singh
On 13 May 2014 13:11, [Chander Kashyap <chander.kashyap@linaro.org> wrote:
What happened to your name ? "["
> From: Chander Kashyap <k.chander@samsung.com>
>
> It may be possible to unregister and re-register the cpufreq driver.
> One such example is arm big-little IKS cpufreq driver. While
> re-registering the driver, same OPPs may get added again.
>
> This patch detects the duplicacy and discards them.
>
> Signed-off-by: Chander Kashyap <k.chander@samsung.com>
> Signed-off-by: Inderpal Singh <inderpal.s@samsung.com>
> ---
> drivers/base/power/opp.c | 28 +++++++++++++++++++---------
> 1 file changed, 19 insertions(+), 9 deletions(-)
I wouldn't say that this approach is particularly bad or wrong, but what
about this instead?
diff --git a/drivers/base/power/opp.c b/drivers/base/power/opp.c
index 2553867..7efdaf3 100644
--- a/drivers/base/power/opp.c
+++ b/drivers/base/power/opp.c
@@ -713,6 +713,11 @@ int of_init_opp_table(struct device *dev)
const __be32 *val;
int nr;
+ if (!IS_ERR(find_device_opp(dev))) {
+ dev_warn("%s: opp table already exists\n", __func__);
+ return -EEXIST;
+ }
+
prop = of_find_property(dev->of_node, "operating-points", NULL);
if (!prop)
return -ENODEV;
^ permalink raw reply related [flat|nested] 31+ messages in thread
* Re: [PATCH] PM / OPP: discard duplicate OPP additions
2014-05-13 8:22 ` Viresh Kumar
@ 2014-05-13 10:30 ` Sudeep Holla
2014-05-13 11:05 ` Viresh Kumar
2014-05-13 13:41 ` Nishanth Menon
1 sibling, 1 reply; 31+ messages in thread
From: Sudeep Holla @ 2014-05-13 10:30 UTC (permalink / raw)
To: Viresh Kumar
Cc: [Chander Kashyap, linux-pm@vger.kernel.org,
Linux Kernel Mailing List, Rafael J. Wysocki, Pavel Machek,
Brown, Len, Greg Kroah-Hartman, Chander Kashyap, Inderpal Singh,
Sudeep Holla
On Tue, May 13, 2014 at 9:22 AM, Viresh Kumar <viresh.kumar@linaro.org> wrote:
> On 13 May 2014 13:11, [Chander Kashyap <chander.kashyap@linaro.org> wrote:
>
> What happened to your name ? "["
>
>> From: Chander Kashyap <k.chander@samsung.com>
>>
>> It may be possible to unregister and re-register the cpufreq driver.
>> One such example is arm big-little IKS cpufreq driver. While
>> re-registering the driver, same OPPs may get added again.
>>
>> This patch detects the duplicacy and discards them.
>>
>> Signed-off-by: Chander Kashyap <k.chander@samsung.com>
>> Signed-off-by: Inderpal Singh <inderpal.s@samsung.com>
>> ---
>> drivers/base/power/opp.c | 28 +++++++++++++++++++---------
>> 1 file changed, 19 insertions(+), 9 deletions(-)
>
> I wouldn't say that this approach is particularly bad or wrong, but what
> about this instead?
>
Yes I prefer this and this exactly what I had[1] in my OPP DT series which
we could not conclude on the bindings. You also need patch[2] for DT version.
Regards,
Sudeep
[1] http://www.spinics.net/lists/cpufreq/msg07914.html
[2] http://www.spinics.net/lists/cpufreq/msg07916.html
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH] PM / OPP: discard duplicate OPP additions
2014-05-13 10:30 ` Sudeep Holla
@ 2014-05-13 11:05 ` Viresh Kumar
2014-05-13 11:37 ` Sudeep Holla
2014-05-13 11:57 ` Chander Kashyap
0 siblings, 2 replies; 31+ messages in thread
From: Viresh Kumar @ 2014-05-13 11:05 UTC (permalink / raw)
To: Sudeep Holla, Nishanth Menon
Cc: [Chander Kashyap, linux-pm@vger.kernel.org,
Linux Kernel Mailing List, Rafael J. Wysocki, Pavel Machek,
Brown, Len, Greg Kroah-Hartman, Chander Kashyap, Inderpal Singh
On 13 May 2014 16:00, Sudeep Holla <sudeep.holla@arm.com> wrote:
> On Tue, May 13, 2014 at 9:22 AM, Viresh Kumar <viresh.kumar@linaro.org> wrote:
>> On 13 May 2014 13:11, [Chander Kashyap <chander.kashyap@linaro.org> wrote:
>>
>> What happened to your name ? "["
>>
>>> From: Chander Kashyap <k.chander@samsung.com>
>>>
>>> It may be possible to unregister and re-register the cpufreq driver.
>>> One such example is arm big-little IKS cpufreq driver. While
>>> re-registering the driver, same OPPs may get added again.
>>>
>>> This patch detects the duplicacy and discards them.
>>>
>>> Signed-off-by: Chander Kashyap <k.chander@samsung.com>
>>> Signed-off-by: Inderpal Singh <inderpal.s@samsung.com>
>>> ---
>>> drivers/base/power/opp.c | 28 +++++++++++++++++++---------
>>> 1 file changed, 19 insertions(+), 9 deletions(-)
>>
>> I wouldn't say that this approach is particularly bad or wrong, but what
>> about this instead?
>>
>
> Yes I prefer this and this exactly what I had[1] in my OPP DT series which
> we could not conclude on the bindings. You also need patch[2] for DT version.
Ahh, I have just reinvented the wheel. Though I can see now that I have
Acked those patches as well :)
So, what are the plans for those patches then? As Chander also needs few
of those.
Probably split the series to get the non-blockers upstream Atleast ?
Another thing that I thought later, though the problem can be fixed by
your version of patches, the version from chander had something good as
well. It would get rid of duplicate entries coming from dtb. Would it make
sense to get that part in as well?
--
viresh
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH] PM / OPP: discard duplicate OPP additions
2014-05-13 11:05 ` Viresh Kumar
@ 2014-05-13 11:37 ` Sudeep Holla
2014-05-13 11:57 ` Chander Kashyap
1 sibling, 0 replies; 31+ messages in thread
From: Sudeep Holla @ 2014-05-13 11:37 UTC (permalink / raw)
To: Viresh Kumar, Nishanth Menon
Cc: Sudeep Holla, [Chander Kashyap, linux-pm@vger.kernel.org,
Linux Kernel Mailing List, Rafael J. Wysocki, Pavel Machek,
Brown, Len, Greg Kroah-Hartman, Chander Kashyap, Inderpal Singh
Hi Viresh,
On 13/05/14 12:05, Viresh Kumar wrote:
> On 13 May 2014 16:00, Sudeep Holla <sudeep.holla@arm.com> wrote:
>> On Tue, May 13, 2014 at 9:22 AM, Viresh Kumar <viresh.kumar@linaro.org> wrote:
>>> On 13 May 2014 13:11, [Chander Kashyap <chander.kashyap@linaro.org> wrote:
>>>
>>> What happened to your name ? "["
>>>
>>>> From: Chander Kashyap <k.chander@samsung.com>
>>>>
>>>> It may be possible to unregister and re-register the cpufreq driver.
>>>> One such example is arm big-little IKS cpufreq driver. While
>>>> re-registering the driver, same OPPs may get added again.
>>>>
>>>> This patch detects the duplicacy and discards them.
>>>>
>>>> Signed-off-by: Chander Kashyap <k.chander@samsung.com>
>>>> Signed-off-by: Inderpal Singh <inderpal.s@samsung.com>
>>>> ---
>>>> drivers/base/power/opp.c | 28 +++++++++++++++++++---------
>>>> 1 file changed, 19 insertions(+), 9 deletions(-)
>>>
>>> I wouldn't say that this approach is particularly bad or wrong, but what
>>> about this instead?
>>>
>>
>> Yes I prefer this and this exactly what I had[1] in my OPP DT series which
>> we could not conclude on the bindings. You also need patch[2] for DT version.
>
> Ahh, I have just reinvented the wheel. Though I can see now that I have
> Acked those patches as well :)
>
Yes correct, it was stalled due to no discussions on the bindings.
> So, what are the plans for those patches then? As Chander also needs few
> of those.
>
> Probably split the series to get the non-blockers upstream Atleast ?
>
I can do that.
> Another thing that I thought later, though the problem can be fixed by
> your version of patches, the version from chander had something good as
> well. It would get rid of duplicate entries coming from dtb. Would it make
> sense to get that part in as well?
>
That requires agreement on the bindings. The main issue with shared opp
bindings is that in general we don't want to modify the standard bindings
without covering all aspects. It will avoid carrying around buggy bindings
forever as its ABI.
There was another thread from Samsung modifying bindings[0] and Rob insisted to
join the discussion[1] I started, but I never got any feedback.
Regards,
Sudeep
[0] http://marc.info/?l=devicetree&m=139152254008892&w=2
[1] http://www.spinics.net/lists/arm-kernel/msg303977.html
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH] PM / OPP: discard duplicate OPP additions
2014-05-13 11:05 ` Viresh Kumar
2014-05-13 11:37 ` Sudeep Holla
@ 2014-05-13 11:57 ` Chander Kashyap
2014-05-13 13:02 ` Sudeep Holla
1 sibling, 1 reply; 31+ messages in thread
From: Chander Kashyap @ 2014-05-13 11:57 UTC (permalink / raw)
To: Viresh Kumar
Cc: Sudeep Holla, Nishanth Menon, linux-pm@vger.kernel.org,
Linux Kernel Mailing List, Rafael J. Wysocki, Pavel Machek,
Brown, Len, Greg Kroah-Hartman, Chander Kashyap, Inderpal Singh
On 13 May 2014 16:35, Viresh Kumar <viresh.kumar@linaro.org> wrote:
> On 13 May 2014 16:00, Sudeep Holla <sudeep.holla@arm.com> wrote:
>> On Tue, May 13, 2014 at 9:22 AM, Viresh Kumar <viresh.kumar@linaro.org> wrote:
>>> On 13 May 2014 13:11, [Chander Kashyap <chander.kashyap@linaro.org> wrote:
>>>
>>> What happened to your name ? "["
>>>
>>>> From: Chander Kashyap <k.chander@samsung.com>
>>>>
>>>> It may be possible to unregister and re-register the cpufreq driver.
>>>> One such example is arm big-little IKS cpufreq driver. While
>>>> re-registering the driver, same OPPs may get added again.
>>>>
>>>> This patch detects the duplicacy and discards them.
>>>>
>>>> Signed-off-by: Chander Kashyap <k.chander@samsung.com>
>>>> Signed-off-by: Inderpal Singh <inderpal.s@samsung.com>
>>>> ---
>>>> drivers/base/power/opp.c | 28 +++++++++++++++++++---------
>>>> 1 file changed, 19 insertions(+), 9 deletions(-)
>>>
>>> I wouldn't say that this approach is particularly bad or wrong, but what
>>> about this instead?
>>>
>>
>> Yes I prefer this and this exactly what I had[1] in my OPP DT series which
>> we could not conclude on the bindings. You also need patch[2] for DT version.
>
> Ahh, I have just reinvented the wheel. Though I can see now that I have
> Acked those patches as well :)
>
> So, what are the plans for those patches then? As Chander also needs few
> of those.
>
> Probably split the series to get the non-blockers upstream Atleast ?
>
> Another thing that I thought later, though the problem can be fixed by
> your version of patches, the version from chander had something good as
> well. It would get rid of duplicate entries coming from dtb. Would it make
> sense to get that part in as well?
This patch takes care for duplicate entries even without dt. Hence i
feel it can go as separate patch.
>
> --
> viresh
--
with warm regards,
Chander Kashyap
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH] PM / OPP: discard duplicate OPP additions
2014-05-13 11:57 ` Chander Kashyap
@ 2014-05-13 13:02 ` Sudeep Holla
0 siblings, 0 replies; 31+ messages in thread
From: Sudeep Holla @ 2014-05-13 13:02 UTC (permalink / raw)
To: Chander Kashyap, Viresh Kumar
Cc: Sudeep Holla, Nishanth Menon, linux-pm@vger.kernel.org,
Linux Kernel Mailing List, Rafael J. Wysocki, Pavel Machek,
Brown, Len, Greg Kroah-Hartman, Chander Kashyap, Inderpal Singh
On 13/05/14 12:57, Chander Kashyap wrote:
> On 13 May 2014 16:35, Viresh Kumar <viresh.kumar@linaro.org> wrote:
>> On 13 May 2014 16:00, Sudeep Holla <sudeep.holla@arm.com> wrote:
>>> On Tue, May 13, 2014 at 9:22 AM, Viresh Kumar <viresh.kumar@linaro.org> wrote:
>>>> On 13 May 2014 13:11, [Chander Kashyap <chander.kashyap@linaro.org> wrote:
>>>>
>>>> What happened to your name ? "["
>>>>
>>>>> From: Chander Kashyap <k.chander@samsung.com>
>>>>>
>>>>> It may be possible to unregister and re-register the cpufreq driver.
>>>>> One such example is arm big-little IKS cpufreq driver. While
>>>>> re-registering the driver, same OPPs may get added again.
>>>>>
>>>>> This patch detects the duplicacy and discards them.
>>>>>
>>>>> Signed-off-by: Chander Kashyap <k.chander@samsung.com>
>>>>> Signed-off-by: Inderpal Singh <inderpal.s@samsung.com>
>>>>> ---
>>>>> drivers/base/power/opp.c | 28 +++++++++++++++++++---------
>>>>> 1 file changed, 19 insertions(+), 9 deletions(-)
>>>>
>>>> I wouldn't say that this approach is particularly bad or wrong, but what
>>>> about this instead?
>>>>
>>>
>>> Yes I prefer this and this exactly what I had[1] in my OPP DT series which
>>> we could not conclude on the bindings. You also need patch[2] for DT version.
>>
>> Ahh, I have just reinvented the wheel. Though I can see now that I have
>> Acked those patches as well :)
>>
>> So, what are the plans for those patches then? As Chander also needs few
>> of those.
>>
>> Probably split the series to get the non-blockers upstream Atleast ?
>>
>> Another thing that I thought later, though the problem can be fixed by
>> your version of patches, the version from chander had something good as
>> well. It would get rid of duplicate entries coming from dtb. Would it make
>> sense to get that part in as well?
>
> This patch takes care for duplicate entries even without dt. Hence i
> feel it can go as separate patch.
>
Sorry if I added any confusion. My original patch series addressed both the
issues:
1. duplicate entries added by OPP library(same as addressed by your patch) and
2. another to avoid duplication in the devicetree for OPPs
IIUC Exynos don't use ST for OPPs(yet), so you need to address only (1).
But we still need (2) before any bL platforms use DT for OPPs and need CPUFreq
support. And yes we can address this separately.
Regards,
Sudeep
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH] PM / OPP: discard duplicate OPP additions
2014-05-13 8:22 ` Viresh Kumar
2014-05-13 10:30 ` Sudeep Holla
@ 2014-05-13 13:41 ` Nishanth Menon
1 sibling, 0 replies; 31+ messages in thread
From: Nishanth Menon @ 2014-05-13 13:41 UTC (permalink / raw)
To: Viresh Kumar, Chander Kashyap
Cc: linux-pm@vger.kernel.org, Linux Kernel Mailing List,
Rafael J. Wysocki, Pavel Machek, Brown, Len, Greg Kroah-Hartman,
Chander Kashyap, Inderpal Singh
On 05/13/2014 03:22 AM, Viresh Kumar wrote:
> On 13 May 2014 13:11, [Chander Kashyap <chander.kashyap@linaro.org> wrote:
>
> What happened to your name ? "["
>
>> From: Chander Kashyap <k.chander@samsung.com>
>>
>> It may be possible to unregister and re-register the cpufreq driver.
>> One such example is arm big-little IKS cpufreq driver. While
>> re-registering the driver, same OPPs may get added again.
>>
>> This patch detects the duplicacy and discards them.
>>
>> Signed-off-by: Chander Kashyap <k.chander@samsung.com>
>> Signed-off-by: Inderpal Singh <inderpal.s@samsung.com>
>> ---
>> drivers/base/power/opp.c | 28 +++++++++++++++++++---------
>> 1 file changed, 19 insertions(+), 9 deletions(-)
>
> I wouldn't say that this approach is particularly bad or wrong, but what
> about this instead?
>
> diff --git a/drivers/base/power/opp.c b/drivers/base/power/opp.c
> index 2553867..7efdaf3 100644
> --- a/drivers/base/power/opp.c
> +++ b/drivers/base/power/opp.c
> @@ -713,6 +713,11 @@ int of_init_opp_table(struct device *dev)
> const __be32 *val;
> int nr;
>
> + if (!IS_ERR(find_device_opp(dev))) {
> + dev_warn("%s: opp table already exists\n", __func__);
> + return -EEXIST;
> + }
> +
> prop = of_find_property(dev->of_node, "operating-points", NULL);
> if (!prop)
> return -ENODEV;
yes - this is good but should be an additional patch IMHO, since it
solves a different issue:"prevent opp table re-creation attempt". the
$subject patch addresses an issue where dev_pm_opp_add can be invoked
independently as well -> So, we seem to have have three issues to solve:
a) do we continue to ensure that OPP table is created one time?
b) while creating OPP table, duplicate entries should be rejected
($subject)
c) prevent recreation of OPP table once created (if we decide not to
have a cleanup logic as part of (a)) - this is what you propose.
Now, considering that OPP table definition is an SoC behavior, that
behavior is NOT going to change just because we are reinserting driver
modules - so if cpufreq drivers are resulting in that behavior, then
we should fix that. and consider OPP tables are created one time (at
boot) and do the necessary changes for the same.
just my 2 cents.
--
Regards,
Nishanth Menon
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH] PM / OPP: discard duplicate OPP additions
2014-05-13 7:41 [PATCH] PM / OPP: discard duplicate OPP additions [Chander Kashyap
2014-05-13 8:22 ` Viresh Kumar
@ 2014-05-13 13:23 ` Nishanth Menon
2014-05-14 9:31 ` Chander Kashyap
2014-05-14 15:02 ` [PATCH] " Pavel Machek
2 siblings, 1 reply; 31+ messages in thread
From: Nishanth Menon @ 2014-05-13 13:23 UTC (permalink / raw)
To: [Chander Kashyap
Cc: linux-pm@vger.kernel.org, lkml, rjw@rjwysocki.net, pavel,
Len Brown, gregkh, Viresh Kumar, Chander Kashyap, Inderpal Singh
On Tue, May 13, 2014 at 2:41 AM, [Chander Kashyap
<chander.kashyap@linaro.org> wrote:
> From: Chander Kashyap <k.chander@samsung.com>
>
> It may be possible to unregister and re-register the cpufreq driver.
> One such example is arm big-little IKS cpufreq driver. While
> re-registering the driver, same OPPs may get added again.
>
> This patch detects the duplicacy and discards them.
Nice catch. Thanks for the same.
That said, instead of ignoring it (skipping addition), should we do
the following:
a) if we find the same OPP being added, return error
b) add a cleanup routine dev_pm_opp_remove ?
Original design required OPP entries added by platform code and used
by driver code, but things have changed over time.
>
> Signed-off-by: Chander Kashyap <k.chander@samsung.com>
> Signed-off-by: Inderpal Singh <inderpal.s@samsung.com>
> ---
> drivers/base/power/opp.c | 28 +++++++++++++++++++---------
> 1 file changed, 19 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/base/power/opp.c b/drivers/base/power/opp.c
> index 2553867..2e803a9 100644
> --- a/drivers/base/power/opp.c
> +++ b/drivers/base/power/opp.c
> @@ -443,23 +443,33 @@ int dev_pm_opp_add(struct device *dev, unsigned long freq, unsigned long u_volt)
> new_opp->u_volt = u_volt;
> new_opp->available = true;
>
> - /* Insert new OPP in order of increasing frequency */
> + /*
> + * Insert new OPP in order of increasing frequency
> + * and discard if already present
> + */
> head = &dev_opp->opp_list;
> list_for_each_entry_rcu(opp, &dev_opp->opp_list, node) {
> - if (new_opp->rate < opp->rate)
> + if (new_opp->rate <= opp->rate)
> break;
> else
> head = &opp->node;
> }
>
say we do at this point:
if (new_opp->rate == opp->rate) {
dev_err(dev, "%s: attempt to add duplicate OPP entry (rate=%ld)\n",
__func__, new_opp->rate)
kfree(new_opp);
return -EINVAL;
}
we could avoid the change below, right?
> - list_add_rcu(&new_opp->node, head);
> - mutex_unlock(&dev_opp_list_lock);
> + if (new_opp->rate != opp->rate) {
> + list_add_rcu(&new_opp->node, head);
> + mutex_unlock(&dev_opp_list_lock);
> +
> + /*
> + * Notify the changes in the availability of the operable
> + * frequency/voltage list.
> + */
> + srcu_notifier_call_chain(&dev_opp->head,
> + OPP_EVENT_ADD, new_opp);
> + } else {
> + mutex_unlock(&dev_opp_list_lock);
> + kfree(new_opp);
> + }
>
> - /*
> - * Notify the changes in the availability of the operable
> - * frequency/voltage list.
> - */
> - srcu_notifier_call_chain(&dev_opp->head, OPP_EVENT_ADD, new_opp);
> return 0;
> }
> EXPORT_SYMBOL_GPL(dev_pm_opp_add);
> --
> 1.7.9.5
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-pm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH] PM / OPP: discard duplicate OPP additions
2014-05-13 13:23 ` Nishanth Menon
@ 2014-05-14 9:31 ` Chander Kashyap
2014-05-14 11:08 ` Viresh Kumar
0 siblings, 1 reply; 31+ messages in thread
From: Chander Kashyap @ 2014-05-14 9:31 UTC (permalink / raw)
To: Nishanth Menon
Cc: linux-pm@vger.kernel.org, lkml, rjw@rjwysocki.net, Pavel Machek,
Len Brown, Greg Kroah-Hartman, Viresh Kumar, Chander Kashyap,
Inderpal Singh
Hi Nishant,
On 13 May 2014 18:53, Nishanth Menon <nm@ti.com> wrote:
> On Tue, May 13, 2014 at 2:41 AM, [Chander Kashyap
> <chander.kashyap@linaro.org> wrote:
>> From: Chander Kashyap <k.chander@samsung.com>
>>
>> It may be possible to unregister and re-register the cpufreq driver.
>> One such example is arm big-little IKS cpufreq driver. While
>> re-registering the driver, same OPPs may get added again.
>>
>> This patch detects the duplicacy and discards them.
>
> Nice catch. Thanks for the same.
>
> That said, instead of ignoring it (skipping addition), should we do
> the following:
> a) if we find the same OPP being added, return error
> b) add a cleanup routine dev_pm_opp_remove ?
>
> Original design required OPP entries added by platform code and used
> by driver code, but things have changed over time.
>
>>
>> Signed-off-by: Chander Kashyap <k.chander@samsung.com>
>> Signed-off-by: Inderpal Singh <inderpal.s@samsung.com>
>> ---
>> drivers/base/power/opp.c | 28 +++++++++++++++++++---------
>> 1 file changed, 19 insertions(+), 9 deletions(-)
>>
>> diff --git a/drivers/base/power/opp.c b/drivers/base/power/opp.c
>> index 2553867..2e803a9 100644
>> --- a/drivers/base/power/opp.c
>> +++ b/drivers/base/power/opp.c
>> @@ -443,23 +443,33 @@ int dev_pm_opp_add(struct device *dev, unsigned long freq, unsigned long u_volt)
>> new_opp->u_volt = u_volt;
>> new_opp->available = true;
>>
>> - /* Insert new OPP in order of increasing frequency */
>> + /*
>> + * Insert new OPP in order of increasing frequency
>> + * and discard if already present
>> + */
>> head = &dev_opp->opp_list;
>> list_for_each_entry_rcu(opp, &dev_opp->opp_list, node) {
>> - if (new_opp->rate < opp->rate)
>> + if (new_opp->rate <= opp->rate)
>> break;
>> else
>> head = &opp->node;
>> }
>>
>
> say we do at this point:
> if (new_opp->rate == opp->rate) {
> dev_err(dev, "%s: attempt to add duplicate OPP entry (rate=%ld)\n",
> __func__, new_opp->rate)
> kfree(new_opp);
> return -EINVAL;
> }
Yes this is more cleaner.
But instead of dev_err, we should use dev_warn and secondly
return 0 rather than EINVAL, as there are independent users for this function
> we could avoid the change below, right?
>
>> - list_add_rcu(&new_opp->node, head);
>> - mutex_unlock(&dev_opp_list_lock);
>> + if (new_opp->rate != opp->rate) {
>> + list_add_rcu(&new_opp->node, head);
>> + mutex_unlock(&dev_opp_list_lock);
>> +
>> + /*
>> + * Notify the changes in the availability of the operable
>> + * frequency/voltage list.
>> + */
>> + srcu_notifier_call_chain(&dev_opp->head,
>> + OPP_EVENT_ADD, new_opp);
>> + } else {
>> + mutex_unlock(&dev_opp_list_lock);
>> + kfree(new_opp);
>> + }
>>
>> - /*
>> - * Notify the changes in the availability of the operable
>> - * frequency/voltage list.
>> - */
>> - srcu_notifier_call_chain(&dev_opp->head, OPP_EVENT_ADD, new_opp);
>> return 0;
>> }
>> EXPORT_SYMBOL_GPL(dev_pm_opp_add);
>> --
>> 1.7.9.5
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-pm" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
with warm regards,
Chander Kashyap
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH] PM / OPP: discard duplicate OPP additions
2014-05-14 9:31 ` Chander Kashyap
@ 2014-05-14 11:08 ` Viresh Kumar
2014-05-14 14:27 ` Nishanth Menon
0 siblings, 1 reply; 31+ messages in thread
From: Viresh Kumar @ 2014-05-14 11:08 UTC (permalink / raw)
To: Chander Kashyap
Cc: Nishanth Menon, linux-pm@vger.kernel.org, lkml, rjw@rjwysocki.net,
Pavel Machek, Len Brown, Greg Kroah-Hartman, Chander Kashyap,
Inderpal Singh
On 14 May 2014 15:01, Chander Kashyap <chander.kashyap@linaro.org> wrote:
>> say we do at this point:
>> if (new_opp->rate == opp->rate) {
>> dev_err(dev, "%s: attempt to add duplicate OPP entry (rate=%ld)\n",
>> __func__, new_opp->rate)
>> kfree(new_opp);
>> return -EINVAL;
>> }
>
> Yes this is more cleaner.
> But instead of dev_err, we should use dev_warn and secondly
Correct
> return 0 rather than EINVAL, as there are independent users for this function
Why? We should actually use EEXIST here instead of EINVAL though..
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH] PM / OPP: discard duplicate OPP additions
2014-05-14 11:08 ` Viresh Kumar
@ 2014-05-14 14:27 ` Nishanth Menon
2014-05-15 8:25 ` Chander Kashyap
0 siblings, 1 reply; 31+ messages in thread
From: Nishanth Menon @ 2014-05-14 14:27 UTC (permalink / raw)
To: Viresh Kumar, Chander Kashyap
Cc: linux-pm@vger.kernel.org, lkml, rjw@rjwysocki.net, Pavel Machek,
Len Brown, Greg Kroah-Hartman, Chander Kashyap, Inderpal Singh
On 05/14/2014 06:08 AM, Viresh Kumar wrote:
> On 14 May 2014 15:01, Chander Kashyap <chander.kashyap@linaro.org> wrote:
>>> say we do at this point:
>>> if (new_opp->rate == opp->rate) {
>>> dev_err(dev, "%s: attempt to add duplicate OPP entry (rate=%ld)\n",
>>> __func__, new_opp->rate)
>>> kfree(new_opp);
>>> return -EINVAL;
>>> }
>>
>> Yes this is more cleaner.
>> But instead of dev_err, we should use dev_warn and secondly
>
> Correct
>
>> return 0 rather than EINVAL, as there are independent users for this function
>
> Why? We should actually use EEXIST here instead of EINVAL though..
>
Yep -EEXIST is the right return value here. As Viresh indicated,
reporting back 0 when the requested operation actually was not
performed is wrong. Caller is supposed to know when it makes an error
- hiding it is not correct.
--
Regards,
Nishanth Menon
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH] PM / OPP: discard duplicate OPP additions
2014-05-14 14:27 ` Nishanth Menon
@ 2014-05-15 8:25 ` Chander Kashyap
2014-05-15 8:27 ` Viresh Kumar
0 siblings, 1 reply; 31+ messages in thread
From: Chander Kashyap @ 2014-05-15 8:25 UTC (permalink / raw)
To: Nishanth Menon
Cc: Viresh Kumar, linux-pm@vger.kernel.org, lkml, rjw@rjwysocki.net,
Pavel Machek, Len Brown, Greg Kroah-Hartman, Chander Kashyap,
Inderpal Singh
On 14 May 2014 19:57, Nishanth Menon <nm@ti.com> wrote:
> On 05/14/2014 06:08 AM, Viresh Kumar wrote:
>> On 14 May 2014 15:01, Chander Kashyap <chander.kashyap@linaro.org> wrote:
>>>> say we do at this point:
>>>> if (new_opp->rate == opp->rate) {
>>>> dev_err(dev, "%s: attempt to add duplicate OPP entry (rate=%ld)\n",
>>>> __func__, new_opp->rate)
>>>> kfree(new_opp);
>>>> return -EINVAL;
>>>> }
>>>
>>> Yes this is more cleaner.
>>> But instead of dev_err, we should use dev_warn and secondly
>>
>> Correct
>>
>>> return 0 rather than EINVAL, as there are independent users for this function
>>
>> Why? We should actually use EEXIST here instead of EINVAL though..
>>
> Yep -EEXIST is the right return value here. As Viresh indicated,
> reporting back 0 when the requested operation actually was not
> performed is wrong. Caller is supposed to know when it makes an error
> - hiding it is not correct.
>
Then in that case the caller must take care for two type of errors:
-EEXIST and -ENOMEM
> --
> Regards,
> Nishanth Menon
--
with warm regards,
Chander Kashyap
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH] PM / OPP: discard duplicate OPP additions
2014-05-15 8:25 ` Chander Kashyap
@ 2014-05-15 8:27 ` Viresh Kumar
2014-05-15 8:46 ` Chander Kashyap
0 siblings, 1 reply; 31+ messages in thread
From: Viresh Kumar @ 2014-05-15 8:27 UTC (permalink / raw)
To: Chander Kashyap
Cc: Nishanth Menon, linux-pm@vger.kernel.org, lkml, rjw@rjwysocki.net,
Pavel Machek, Len Brown, Greg Kroah-Hartman, Chander Kashyap,
Inderpal Singh
On 15 May 2014 13:55, Chander Kashyap <chander.kashyap@linaro.org> wrote:
> Then in that case the caller must take care for two type of errors:
> -EEXIST and -ENOMEM
Actually, success: (0 or -EEXIST), failure: Anything else.
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH] PM / OPP: discard duplicate OPP additions
2014-05-15 8:27 ` Viresh Kumar
@ 2014-05-15 8:46 ` Chander Kashyap
2014-05-15 8:55 ` Viresh Kumar
0 siblings, 1 reply; 31+ messages in thread
From: Chander Kashyap @ 2014-05-15 8:46 UTC (permalink / raw)
To: Viresh Kumar
Cc: Nishanth Menon, linux-pm@vger.kernel.org, lkml, rjw@rjwysocki.net,
Pavel Machek, Len Brown, Greg Kroah-Hartman, Chander Kashyap,
Inderpal Singh
On 15 May 2014 13:57, Viresh Kumar <viresh.kumar@linaro.org> wrote:
> On 15 May 2014 13:55, Chander Kashyap <chander.kashyap@linaro.org> wrote:
>> Then in that case the caller must take care for two type of errors:
>> -EEXIST and -ENOMEM
>
> Actually, success: (0 or -EEXIST), failure: Anything else.
Yes exactly. All users of this API need to be modified to handle
EEXIST as success.
To avoid this returning 0 was suggested,
--
with warm regards,
Chander Kashyap
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH] PM / OPP: discard duplicate OPP additions
2014-05-15 8:46 ` Chander Kashyap
@ 2014-05-15 8:55 ` Viresh Kumar
2014-05-16 8:13 ` [PATCH v2] " Chander Kashyap
0 siblings, 1 reply; 31+ messages in thread
From: Viresh Kumar @ 2014-05-15 8:55 UTC (permalink / raw)
To: Chander Kashyap
Cc: Nishanth Menon, linux-pm@vger.kernel.org, lkml, rjw@rjwysocki.net,
Pavel Machek, Len Brown, Greg Kroah-Hartman, Chander Kashyap,
Inderpal Singh
On 15 May 2014 14:16, Chander Kashyap <chander.kashyap@linaro.org> wrote:
> Yes exactly. All users of this API need to be modified to handle
> EEXIST as success.
There are very few:
arch/arm/mach-omap2/opp.c
arch/arm/mach-vexpress/spc.c
drivers/devfreq/exynos/exynos4_bus.c
drivers/devfreq/exynos/exynos5_bus.c
So shouldn't be a problem fixing them..
> To avoid this returning 0 was suggested
But the bigger problem is that all new users have to know about this
and must take care of it, would also result in code duplication.
So, if I think this way:
The purpose of dev_pm_opp_add() is to make sure the OPP is
present with the device, when this function returns..
And with a duplicate entry, we can still confirm that. Over that, I couldn't
think of any situation where the caller wants to react to -EXIST separately.
They will still consider it as success.
So, maybe returning '0' isn't that bad of an idea :)
@Nishanth ?
^ permalink raw reply [flat|nested] 31+ messages in thread
* [PATCH v2] PM / OPP: discard duplicate OPP additions
2014-05-15 8:55 ` Viresh Kumar
@ 2014-05-16 8:13 ` Chander Kashyap
0 siblings, 0 replies; 31+ messages in thread
From: Chander Kashyap @ 2014-05-16 8:13 UTC (permalink / raw)
To: linux-pm, linux-kernel
Cc: nm, rjw, pavel, len.brown, gregkh, viresh.kumar, Chander Kashyap,
Inderpal Singh
From: Chander Kashyap <k.chander@samsung.com>
It may be possible to unregister and re-register the cpufreq driver.
One such example is arm big-little IKS cpufreq driver. While
re-registering the driver, same OPPs may get added again.
This patch detects the duplicacy and discards them.
Signed-off-by: Chander Kashyap <k.chander@samsung.com>
Signed-off-by: Inderpal Singh <inderpal.s@samsung.com>
---
Changes in v2:
- Reorder check for duplicate opp
drivers/base/power/opp.c | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/drivers/base/power/opp.c b/drivers/base/power/opp.c
index ca521e1..973da78 100644
--- a/drivers/base/power/opp.c
+++ b/drivers/base/power/opp.c
@@ -443,15 +443,24 @@ int dev_pm_opp_add(struct device *dev, unsigned long freq, unsigned long u_volt)
new_opp->u_volt = u_volt;
new_opp->available = true;
- /* Insert new OPP in order of increasing frequency */
+ /*
+ * Insert new OPP in order of increasing frequency
+ * and discard if already present
+ */
head = &dev_opp->opp_list;
list_for_each_entry_rcu(opp, &dev_opp->opp_list, node) {
- if (new_opp->rate < opp->rate)
+ if (new_opp->rate <= opp->rate)
break;
else
head = &opp->node;
}
+ if (new_opp->rate == opp->rate) {
+ mutex_unlock(&dev_opp_list_lock);
+ kfree(new_opp);
+ return 0;
+ }
+
list_add_rcu(&new_opp->node, head);
mutex_unlock(&dev_opp_list_lock);
--
1.7.9.5
^ permalink raw reply related [flat|nested] 31+ messages in thread
* Re: [PATCH] PM / OPP: discard duplicate OPP additions
2014-05-13 7:41 [PATCH] PM / OPP: discard duplicate OPP additions [Chander Kashyap
2014-05-13 8:22 ` Viresh Kumar
2014-05-13 13:23 ` Nishanth Menon
@ 2014-05-14 15:02 ` Pavel Machek
2014-05-15 3:57 ` Viresh Kumar
2 siblings, 1 reply; 31+ messages in thread
From: Pavel Machek @ 2014-05-14 15:02 UTC (permalink / raw)
To: [Chander Kashyap
Cc: linux-pm, linux-kernel, rjw, len.brown, gregkh, viresh.kumar,
Chander Kashyap, Inderpal Singh
Hi!
> From: Chander Kashyap <k.chander@samsung.com>
>
> It may be possible to unregister and re-register the cpufreq driver.
> One such example is arm big-little IKS cpufreq driver. While
> re-registering the driver, same OPPs may get added again.
Hmm. Would it be better to actually delete stale OPPs?
Pavel
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH] PM / OPP: discard duplicate OPP additions
2014-05-14 15:02 ` [PATCH] " Pavel Machek
@ 2014-05-15 3:57 ` Viresh Kumar
[not found] ` <CAOqmu80j2q6hQLThVt60QkjqcZTXwJ6ddwDLvqBEW1ejrVh_hw@mail.gmail.com>
0 siblings, 1 reply; 31+ messages in thread
From: Viresh Kumar @ 2014-05-15 3:57 UTC (permalink / raw)
To: Pavel Machek
Cc: [Chander Kashyap, linux-pm@vger.kernel.org,
Linux Kernel Mailing List, Rafael J. Wysocki, Brown, Len,
Greg Kroah-Hartman, Chander Kashyap, Inderpal Singh
On 14 May 2014 20:32, Pavel Machek <pavel@ucw.cz> wrote:
> Hmm. Would it be better to actually delete stale OPPs?
I wouldn't call them stale as dtb isn't going to change after boot
and we will always get the same list again, unless some arch has
added few more after boot.
So, there is no point freeing opp's once created. Just make sure
they aren't added again.
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH v2] PM / OPP: discard duplicate OPP additions
@ 2014-05-16 8:24 Viresh Kumar
2014-05-16 8:42 ` Chander Kashyap
0 siblings, 1 reply; 31+ messages in thread
From: Viresh Kumar @ 2014-05-16 8:24 UTC (permalink / raw)
To: Chander Kashyap
Cc: linux-pm@vger.kernel.org, Linux Kernel Mailing List,
Nishanth Menon, Rafael J. Wysocki, Pavel Machek, Brown, Len,
Greg Kroah-Hartman, Chander Kashyap, Inderpal Singh
On 16 May 2014 13:43, Chander Kashyap <chander.kashyap@linaro.org> wrote:
> From: Chander Kashyap <k.chander@samsung.com>
>
> It may be possible to unregister and re-register the cpufreq driver.
> One such example is arm big-little IKS cpufreq driver. While
> re-registering the driver, same OPPs may get added again.
>
> This patch detects the duplicacy and discards them.
Diff looks fine but not the log ofcourse. It doesn't have anything to do with
big LITTLE.. Its just a patch to avoid addition of duplicate OPPs..
Also fix spelling mistakes in log..
And subject should be:
PM / OPP: discard duplicate OPPs
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH v2] PM / OPP: discard duplicate OPP additions
2014-05-16 8:24 [PATCH v2] " Viresh Kumar
@ 2014-05-16 8:42 ` Chander Kashyap
0 siblings, 0 replies; 31+ messages in thread
From: Chander Kashyap @ 2014-05-16 8:42 UTC (permalink / raw)
To: Viresh Kumar
Cc: linux-pm@vger.kernel.org, Linux Kernel Mailing List,
Nishanth Menon, Rafael J. Wysocki, Pavel Machek, Brown, Len,
Greg Kroah-Hartman, Chander Kashyap, Inderpal Singh
On 16 May 2014 13:54, Viresh Kumar <viresh.kumar@linaro.org> wrote:
> On 16 May 2014 13:43, Chander Kashyap <chander.kashyap@linaro.org> wrote:
>> From: Chander Kashyap <k.chander@samsung.com>
>>
>> It may be possible to unregister and re-register the cpufreq driver.
>> One such example is arm big-little IKS cpufreq driver. While
>> re-registering the driver, same OPPs may get added again.
>>
>> This patch detects the duplicacy and discards them.
>
> Diff looks fine but not the log ofcourse. It doesn't have anything to do with
> big LITTLE.. Its just a patch to avoid addition of duplicate OPPs..
>
Big little reference is provided as an example. Nothing much
> Also fix spelling mistakes in log..
>
> And subject should be:
> PM / OPP: discard duplicate OPPs
Duplicates are discarded during OPP addition, and subject line indicates that.
--
with warm regards,
Chander Kashyap
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH v2] PM / OPP: discard duplicate OPP additions
@ 2014-05-16 8:47 Viresh Kumar
0 siblings, 0 replies; 31+ messages in thread
From: Viresh Kumar @ 2014-05-16 8:47 UTC (permalink / raw)
To: Chander Kashyap
Cc: linux-pm@vger.kernel.org, Linux Kernel Mailing List,
Nishanth Menon, Rafael J. Wysocki, Pavel Machek, Brown, Len,
Greg Kroah-Hartman, Chander Kashyap, Inderpal Singh
On 16 May 2014 14:12, Chander Kashyap <chander.kashyap@linaro.org> wrote:
> On 16 May 2014 13:54, Viresh Kumar <viresh.kumar@linaro.org> wrote:
>> On 16 May 2014 13:43, Chander Kashyap <chander.kashyap@linaro.org> wrote:
>>> From: Chander Kashyap <k.chander@samsung.com>
>>>
>>> It may be possible to unregister and re-register the cpufreq driver.
>>> One such example is arm big-little IKS cpufreq driver. While
>>> re-registering the driver, same OPPs may get added again.
>>>
>>> This patch detects the duplicacy and discards them.
>>
>> Diff looks fine but not the log ofcourse. It doesn't have anything to do with
>> big LITTLE.. Its just a patch to avoid addition of duplicate OPPs..
>>
>
> Big little reference is provided as an example. Nothing much
What I am saying is: "This is not a problem of re-registering drivers
but adding duplicate OPPs and that's what we should emphasize
on in the log". Your log is all focused on how to get re-registering
of a driver working.
>> Also fix spelling mistakes in log..
>>
>> And subject should be:
>> PM / OPP: discard duplicate OPPs
>
> Duplicates are discarded during OPP addition, and subject line indicates that.
I am asking to improve it. Replace:
PM / OPP: discard duplicate OPP additions
with
PM / OPP: discard duplicate OPPs
^ permalink raw reply [flat|nested] 31+ messages in thread
end of thread, other threads:[~2014-05-17 17:29 UTC | newest]
Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-13 7:41 [PATCH] PM / OPP: discard duplicate OPP additions [Chander Kashyap
2014-05-13 8:22 ` Viresh Kumar
2014-05-13 10:30 ` Sudeep Holla
2014-05-13 11:05 ` Viresh Kumar
2014-05-13 11:37 ` Sudeep Holla
2014-05-13 11:57 ` Chander Kashyap
2014-05-13 13:02 ` Sudeep Holla
2014-05-13 13:41 ` Nishanth Menon
2014-05-13 13:23 ` Nishanth Menon
2014-05-14 9:31 ` Chander Kashyap
2014-05-14 11:08 ` Viresh Kumar
2014-05-14 14:27 ` Nishanth Menon
2014-05-15 8:25 ` Chander Kashyap
2014-05-15 8:27 ` Viresh Kumar
2014-05-15 8:46 ` Chander Kashyap
2014-05-15 8:55 ` Viresh Kumar
2014-05-16 8:13 ` [PATCH v2] " Chander Kashyap
2014-05-14 15:02 ` [PATCH] " Pavel Machek
2014-05-15 3:57 ` Viresh Kumar
[not found] ` <CAOqmu80j2q6hQLThVt60QkjqcZTXwJ6ddwDLvqBEW1ejrVh_hw@mail.gmail.com>
2014-05-15 4:36 ` Viresh Kumar
2014-05-15 4:52 ` Inderpal Singh
2014-05-15 5:04 ` Viresh Kumar
2014-05-15 5:30 ` Inderpal Singh
2014-05-15 5:37 ` Viresh Kumar
2014-05-15 5:46 ` Inderpal Singh
2014-05-15 6:01 ` Viresh Kumar
2014-05-15 6:10 ` Inderpal Singh
2014-05-17 17:29 ` Pavel Machek
-- strict thread matches above, loose matches on Subject: below --
2014-05-16 8:24 [PATCH v2] " Viresh Kumar
2014-05-16 8:42 ` Chander Kashyap
2014-05-16 8:47 Viresh Kumar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).