Re: [Query] cpuidle functions cpuidle_install_idle_handler/cpuidle_uninstall_idle_handler

2014-08-05 Thread Mohammad Merajul Islam Molla
ping! Since its been a while. Anyone has any comment on this? Should I go ahead submit a patch? -- Thanks, -Meraj On Thu, Jul 24, 2014 at 9:35 PM, Mohammad Merajul Islam Molla wrote: > Hi > > In drivers/cpuidle/cpuidle.c, there are two functions > cpuidle_install_

[PATCH] cpuidle: ladder governor - use macro instead of hardcoded value

2014-07-27 Thread Mohammad Merajul Islam Molla
use CPUIDLE_DRIVER_STATE_START, instead of hardcoded value 0. As, CPUIDLE_DRIVER_STATE_START can be 1/0 based on CONFIG_ARCH_HAS_CPU_RELAX is defined or not. Signed-off-by: Mohammad Merajul Islam Molla --- drivers/cpuidle/governors/ladder.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions

[PATCH] cpuidle: menu governor - remove unused macro STDDEV_THRESH

2014-07-24 Thread Mohammad Merajul Islam Molla
STDDEV_THRESH was once defined and used in menu governor. But now its no longer used anywhere. So removing the define. Signed-off-by: Mohammad Merajul Islam Molla --- drivers/cpuidle/governors/menu.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/cpuidle/governors/menu.c b/drivers

Re: [PATCH] cpuidle: fix permission for driver name sysfs node

2014-07-15 Thread Mohammad Merajul Islam Molla
Thanks. Its not actually :). On Tue, Jul 15, 2014 at 6:28 PM, Rafael J. Wysocki wrote: > On Tuesday, July 15, 2014 11:16:40 AM Mohammad Merajul Islam Molla wrote: >> Hi Rafael/Daniel, >> >> Did you get a chance to review the patch? > > We will review it. Why is this u

Re: [PATCH] cpuidle: fix permission for driver name sysfs node

2014-07-14 Thread Mohammad Merajul Islam Molla
Hi Rafael/Daniel, Did you get a chance to review the patch? -- Thanks, -Meraj On Sat, Jul 12, 2014 at 7:29 PM, Mohammad Merajul Islam Molla wrote: > cpuidle driver name sysfs node is read-only. So permission should be 0444. > > Signed-off-by: Mohammad Merajul Islam Molla > --

[PATCH] cpuidle: fix permission for driver name sysfs node

2014-07-12 Thread Mohammad Merajul Islam Molla
cpuidle driver name sysfs node is read-only. So permission should be 0444. Signed-off-by: Mohammad Merajul Islam Molla --- drivers/cpuidle/sysfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/cpuidle/sysfs.c b/drivers/cpuidle/sysfs.c index efe2f17..97c5903 100644