All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 3.8-stable] regulator: core: Log when a device causes a voltage
@ 2013-04-02  9:30 Jonghwan Choi
  2013-04-02 18:44 ` Greg KH
  2013-04-02 20:02 ` Greg KH
  0 siblings, 2 replies; 6+ messages in thread
From: Jonghwan Choi @ 2013-04-02  9:30 UTC (permalink / raw)
  To: linux-kernel
  Cc: stable, 'Liam Girdwood', 'Mark Brown',
	'Russ Dill'

3.8-stable review patch.  If anyone has any objections, please let us know.

------------------

From: "Russ Dill <Russ.Dill@ti.com>"

commit 6e45eb12fd1c741d556bf264ee98853b5f3104e5 upstream.

commit dd8004af: 'regulator: core: Log when a device causes a voltage
constraint fail', tried to print out some information about the
check consumer min/max uV fixup, however, it uses a garbage pointer
left over from list_for_each_entry leading to boot messages in the
form:

'[    2.079890] <RANDOM ASCII>: Restricting voltage,
3735899821-4294967295uV'

Because it references regulator->dev, it could potentially read memory from
anywhere causing a panic.

This patch instead uses rdev and the updated min/max uV values.

Signed-off-by: Russ Dill <Russ.Dill@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Jonghwan Choi <jhbird.choi@samsung.com>
---
 drivers/regulator/core.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index 2785843..5a0f54a 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -200,8 +200,8 @@ static int regulator_check_consumers(struct
regulator_dev *rdev,
 	}
 
 	if (*min_uV > *max_uV) {
-		dev_err(regulator->dev, "Restricting voltage, %u-%uuV\n",
-			regulator->min_uV, regulator->max_uV);
+		rdev_err(rdev, "Restricting voltage, %u-%uuV\n",
+			*min_uV, *max_uV);
 		return -EINVAL;
 	}
 
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-04-02 23:32 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-04-02  9:30 [PATCH 3.8-stable] regulator: core: Log when a device causes a voltage Jonghwan Choi
2013-04-02 18:44 ` Greg KH
2013-04-02 20:02 ` Greg KH
2013-04-02 20:39   ` Russ Dill
2013-04-02 20:54     ` Greg KH
2013-04-02 23:32       ` Jonghwan Choi

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.