* Re: [PATCH] PM / devfreq: Fix incorrect type issue.
@ 2015-09-11 4:44 MyungJoo Ham
2015-09-11 7:06 ` Xiaolong Ye
0 siblings, 1 reply; 3+ messages in thread
From: MyungJoo Ham @ 2015-09-11 4:44 UTC (permalink / raw)
To: Xiaolong Ye, 박경민,
linux-pm, linux-kernel, yizhang, kliu5
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=utf-8, Size: 1361 bytes --]
> time_in_state in struct devfreq is defined as unsigned long, so
> devm_kzalloc should use sizeof(unsigned long) as argument instead
> of sizeof(unsigned int), otherwise it will cause unexpected result
> in 64bit system.
>
> Signed-off-by: Xiaolong Ye <yexl@marvell.com>
> Signed-off-by: Kevin Liu <kliu5@marvell.com>
Thanks!
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Which SoC are you working with?
Are you going to upstream your 64bit devfreq driver soon?
Cheers,
MyungJoo
> ---
> drivers/devfreq/devfreq.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/devfreq/devfreq.c b/drivers/devfreq/devfreq.c
> index ca1b362..ac9845a 100644
> --- a/drivers/devfreq/devfreq.c
> +++ b/drivers/devfreq/devfreq.c
> @@ -482,7 +482,7 @@ struct devfreq *devfreq_add_device(struct device *dev,
> devfreq->profile->max_state *
> devfreq->profile->max_state,
> GFP_KERNEL);
> - devfreq->time_in_state = devm_kzalloc(dev, sizeof(unsigned int) *
> + devfreq->time_in_state = devm_kzalloc(dev, sizeof(unsigned long) *
> devfreq->profile->max_state,
> GFP_KERNEL);
> devfreq->last_stat_updated = jiffies;
> --
> 1.7.9.5
ÿôèº{.nÇ+·®+%Ëÿ±éݶ\x17¥wÿº{.nÇ+·¥{±þG«éÿ{ayº\x1dÊÚë,j\a¢f£¢·hïêÿêçz_è®\x03(éÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?¨èÚ&£ø§~á¶iOæ¬z·vØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?I¥
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [PATCH] PM / devfreq: Fix incorrect type issue.
2015-09-11 4:44 [PATCH] PM / devfreq: Fix incorrect type issue MyungJoo Ham
@ 2015-09-11 7:06 ` Xiaolong Ye
0 siblings, 0 replies; 3+ messages in thread
From: Xiaolong Ye @ 2015-09-11 7:06 UTC (permalink / raw)
To: myungjoo.ham, 박경민,
linux-pm, linux-kernel, Yi(apse) Zhang, Kevin Liu
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="utf-8", Size: 1727 bytes --]
>
>
> > time_in_state in struct devfreq is defined as unsigned long, so
> > devm_kzalloc should use sizeof(unsigned long) as argument instead of
> > sizeof(unsigned int), otherwise it will cause unexpected result in
> > 64bit system.
> >
> > Signed-off-by: Xiaolong Ye <yexl@marvell.com>
> > Signed-off-by: Kevin Liu <kliu5@marvell.com>
>
> Thanks!
>
> Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
>
>
> Which SoC are you working with?
I am working on MARVELL PXA1928 SoC platform(with 4 ARM CA53 cores), and we are using devfreq framework to implement our
ddr frequency change design, I found this issue when adapting our driver to 64bit system.
> Are you going to upstream your 64bit devfreq driver soon?
Currently, we donât have a plan to upstream our ddr devfreq driver.
>
>
> Cheers,
> MyungJoo
>
> > ---
> > drivers/devfreq/devfreq.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/devfreq/devfreq.c b/drivers/devfreq/devfreq.c
> > index ca1b362..ac9845a 100644
> > --- a/drivers/devfreq/devfreq.c
> > +++ b/drivers/devfreq/devfreq.c
> > @@ -482,7 +482,7 @@ struct devfreq *devfreq_add_device(struct device
> *dev,
> > devfreq->profile->max_state *
> > devfreq->profile->max_state,
> > GFP_KERNEL);
> > - devfreq->time_in_state = devm_kzalloc(dev, sizeof(unsigned int) *
> > + devfreq->time_in_state = devm_kzalloc(dev, sizeof(unsigned long) *
> > devfreq->profile->max_state,
> > GFP_KERNEL);
> > devfreq->last_stat_updated = jiffies;
> > --
> > 1.7.9.5
ÿôèº{.nÇ+·®+%Ëÿ±éݶ\x17¥wÿº{.nÇ+·¥{±þG«éÿ{ayº\x1dÊÚë,j\a¢f£¢·hïêÿêçz_è®\x03(éÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?¨èÚ&£ø§~á¶iOæ¬z·vØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?I¥
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] PM / devfreq: Fix incorrect type issue.
2015-09-11 3:05 [PATCH] fix incorrect initialization code for trans_stat of devfreq Xiaolong Ye
@ 2015-09-11 3:05 ` Xiaolong Ye
0 siblings, 0 replies; 3+ messages in thread
From: Xiaolong Ye @ 2015-09-11 3:05 UTC (permalink / raw)
To: myungjoo.ham, kyungmin.park, linux-pm, linux-kernel, yizhang, kliu5
Cc: Xiaolong Ye
time_in_state in struct devfreq is defined as unsigned long, so
devm_kzalloc should use sizeof(unsigned long) as argument instead
of sizeof(unsigned int), otherwise it will cause unexpected result
in 64bit system.
Signed-off-by: Xiaolong Ye <yexl@marvell.com>
Signed-off-by: Kevin Liu <kliu5@marvell.com>
---
drivers/devfreq/devfreq.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/devfreq/devfreq.c b/drivers/devfreq/devfreq.c
index ca1b362..ac9845a 100644
--- a/drivers/devfreq/devfreq.c
+++ b/drivers/devfreq/devfreq.c
@@ -482,7 +482,7 @@ struct devfreq *devfreq_add_device(struct device *dev,
devfreq->profile->max_state *
devfreq->profile->max_state,
GFP_KERNEL);
- devfreq->time_in_state = devm_kzalloc(dev, sizeof(unsigned int) *
+ devfreq->time_in_state = devm_kzalloc(dev, sizeof(unsigned long) *
devfreq->profile->max_state,
GFP_KERNEL);
devfreq->last_stat_updated = jiffies;
--
1.7.9.5
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-09-11 7:08 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-11 4:44 [PATCH] PM / devfreq: Fix incorrect type issue MyungJoo Ham
2015-09-11 7:06 ` Xiaolong Ye
-- strict thread matches above, loose matches on Subject: below --
2015-09-11 3:05 [PATCH] fix incorrect initialization code for trans_stat of devfreq Xiaolong Ye
2015-09-11 3:05 ` [PATCH] PM / devfreq: Fix incorrect type issue Xiaolong Ye
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®