Commit 17a82bc6 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Revert "OPP: Protect dev_list with opp_table lock"

This reverts commit 4c64ce94 which is
commit 3d255699 upstream.

Turns out to break the build on the odroid machines, so it needs to be
reverted.
Reported-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Reported-by: default avatar"kernelci.org bot" <bot@kernelci.org>
Cc: Niklas Cassel <niklas.cassel@linaro.org>
Cc: Sasha Levin <sashal@kernel.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4f4ab0b4
...@@ -48,14 +48,9 @@ static struct opp_device *_find_opp_dev(const struct device *dev, ...@@ -48,14 +48,9 @@ static struct opp_device *_find_opp_dev(const struct device *dev,
static struct opp_table *_find_opp_table_unlocked(struct device *dev) static struct opp_table *_find_opp_table_unlocked(struct device *dev)
{ {
struct opp_table *opp_table; struct opp_table *opp_table;
bool found;
list_for_each_entry(opp_table, &opp_tables, node) { list_for_each_entry(opp_table, &opp_tables, node) {
mutex_lock(&opp_table->lock); if (_find_opp_dev(dev, opp_table)) {
found = !!_find_opp_dev(dev, opp_table);
mutex_unlock(&opp_table->lock);
if (found) {
_get_opp_table_kref(opp_table); _get_opp_table_kref(opp_table);
return opp_table; return opp_table;
...@@ -771,8 +766,6 @@ struct opp_device *_add_opp_dev(const struct device *dev, ...@@ -771,8 +766,6 @@ struct opp_device *_add_opp_dev(const struct device *dev,
/* Initialize opp-dev */ /* Initialize opp-dev */
opp_dev->dev = dev; opp_dev->dev = dev;
mutex_lock(&opp_table->lock);
list_add(&opp_dev->node, &opp_table->dev_list); list_add(&opp_dev->node, &opp_table->dev_list);
/* Create debugfs entries for the opp_table */ /* Create debugfs entries for the opp_table */
...@@ -780,7 +773,6 @@ struct opp_device *_add_opp_dev(const struct device *dev, ...@@ -780,7 +773,6 @@ struct opp_device *_add_opp_dev(const struct device *dev,
if (ret) if (ret)
dev_err(dev, "%s: Failed to register opp debugfs (%d)\n", dev_err(dev, "%s: Failed to register opp debugfs (%d)\n",
__func__, ret); __func__, ret);
mutex_unlock(&opp_table->lock);
return opp_dev; return opp_dev;
} }
...@@ -799,7 +791,6 @@ static struct opp_table *_allocate_opp_table(struct device *dev) ...@@ -799,7 +791,6 @@ static struct opp_table *_allocate_opp_table(struct device *dev)
if (!opp_table) if (!opp_table)
return NULL; return NULL;
mutex_init(&opp_table->lock);
INIT_LIST_HEAD(&opp_table->dev_list); INIT_LIST_HEAD(&opp_table->dev_list);
opp_dev = _add_opp_dev(dev, opp_table); opp_dev = _add_opp_dev(dev, opp_table);
...@@ -821,6 +812,7 @@ static struct opp_table *_allocate_opp_table(struct device *dev) ...@@ -821,6 +812,7 @@ static struct opp_table *_allocate_opp_table(struct device *dev)
BLOCKING_INIT_NOTIFIER_HEAD(&opp_table->head); BLOCKING_INIT_NOTIFIER_HEAD(&opp_table->head);
INIT_LIST_HEAD(&opp_table->opp_list); INIT_LIST_HEAD(&opp_table->opp_list);
mutex_init(&opp_table->lock);
kref_init(&opp_table->kref); kref_init(&opp_table->kref);
/* Secure the device table modification */ /* Secure the device table modification */
...@@ -862,10 +854,6 @@ static void _opp_table_kref_release(struct kref *kref) ...@@ -862,10 +854,6 @@ static void _opp_table_kref_release(struct kref *kref)
if (!IS_ERR(opp_table->clk)) if (!IS_ERR(opp_table->clk))
clk_put(opp_table->clk); clk_put(opp_table->clk);
/*
* No need to take opp_table->lock here as we are guaranteed that no
* references to the OPP table are taken at this point.
*/
opp_dev = list_first_entry(&opp_table->dev_list, struct opp_device, opp_dev = list_first_entry(&opp_table->dev_list, struct opp_device,
node); node);
...@@ -1731,9 +1719,6 @@ void _dev_pm_opp_remove_table(struct opp_table *opp_table, struct device *dev, ...@@ -1731,9 +1719,6 @@ void _dev_pm_opp_remove_table(struct opp_table *opp_table, struct device *dev,
{ {
struct dev_pm_opp *opp, *tmp; struct dev_pm_opp *opp, *tmp;
/* Protect dev_list */
mutex_lock(&opp_table->lock);
/* Find if opp_table manages a single device */ /* Find if opp_table manages a single device */
if (list_is_singular(&opp_table->dev_list)) { if (list_is_singular(&opp_table->dev_list)) {
/* Free static OPPs */ /* Free static OPPs */
...@@ -1751,8 +1736,6 @@ void _dev_pm_opp_remove_table(struct opp_table *opp_table, struct device *dev, ...@@ -1751,8 +1736,6 @@ void _dev_pm_opp_remove_table(struct opp_table *opp_table, struct device *dev,
} else { } else {
_remove_opp_dev(_find_opp_dev(dev, opp_table), opp_table); _remove_opp_dev(_find_opp_dev(dev, opp_table), opp_table);
} }
mutex_unlock(&opp_table->lock);
} }
void _dev_pm_opp_find_and_remove_table(struct device *dev, bool remove_all) void _dev_pm_opp_find_and_remove_table(struct device *dev, bool remove_all)
......
...@@ -222,10 +222,8 @@ int dev_pm_opp_get_sharing_cpus(struct device *cpu_dev, struct cpumask *cpumask) ...@@ -222,10 +222,8 @@ int dev_pm_opp_get_sharing_cpus(struct device *cpu_dev, struct cpumask *cpumask)
cpumask_clear(cpumask); cpumask_clear(cpumask);
if (opp_table->shared_opp == OPP_TABLE_ACCESS_SHARED) { if (opp_table->shared_opp == OPP_TABLE_ACCESS_SHARED) {
mutex_lock(&opp_table->lock);
list_for_each_entry(opp_dev, &opp_table->dev_list, node) list_for_each_entry(opp_dev, &opp_table->dev_list, node)
cpumask_set_cpu(opp_dev->dev->id, cpumask); cpumask_set_cpu(opp_dev->dev->id, cpumask);
mutex_unlock(&opp_table->lock);
} else { } else {
cpumask_set_cpu(cpu_dev->id, cpumask); cpumask_set_cpu(cpu_dev->id, cpumask);
} }
......
...@@ -126,7 +126,7 @@ enum opp_table_access { ...@@ -126,7 +126,7 @@ enum opp_table_access {
* @dev_list: list of devices that share these OPPs * @dev_list: list of devices that share these OPPs
* @opp_list: table of opps * @opp_list: table of opps
* @kref: for reference count of the table. * @kref: for reference count of the table.
* @lock: mutex protecting the opp_list and dev_list. * @lock: mutex protecting the opp_list.
* @np: struct device_node pointer for opp's DT node. * @np: struct device_node pointer for opp's DT node.
* @clock_latency_ns_max: Max clock latency in nanoseconds. * @clock_latency_ns_max: Max clock latency in nanoseconds.
* @shared_opp: OPP is shared between multiple devices. * @shared_opp: OPP is shared between multiple devices.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment