Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1609815 > unrolled thread

[PATCH v3 4/9] arm: remove wrong CONFIG_PROC_SYSCTL ifdef

Started byJuri Lelli <juri.lelli@arm.com>
First post2017-03-27 15:20 +0200
Last post2017-03-29 09:40 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH v3 4/9] arm: remove wrong CONFIG_PROC_SYSCTL ifdef Juri Lelli <juri.lelli@arm.com> - 2017-03-27 15:20 +0200
    Re: [PATCH v3 4/9] arm: remove wrong CONFIG_PROC_SYSCTL ifdef Vincent Guittot <vincent.guittot@linaro.org> - 2017-03-29 09:40 +0200

#1609815 — [PATCH v3 4/9] arm: remove wrong CONFIG_PROC_SYSCTL ifdef

FromJuri Lelli <juri.lelli@arm.com>
Date2017-03-27 15:20 +0200
Subject[PATCH v3 4/9] arm: remove wrong CONFIG_PROC_SYSCTL ifdef
Message-ID<tpCIV-cb-1@gated-at.bofh.it>
The sysfs cpu_capacity entry for each CPU has nothing to do with
PROC_FS, nor it's in /proc/sys path.

Remove such ifdef.

Cc: Russell King <linux@arm.linux.org.uk>
Reported-and-suggested-by: Sudeep Holla <sudeep.holla@arm.com>
Fixes: 7e5930aaef5d ('ARM: 8622/3: add sysfs cpu_capacity attribute')
Signed-off-by: Juri Lelli <juri.lelli@arm.com>
---
 arch/arm/kernel/topology.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/arch/arm/kernel/topology.c b/arch/arm/kernel/topology.c
index 4e4af809606a..162c82aeed96 100644
--- a/arch/arm/kernel/topology.c
+++ b/arch/arm/kernel/topology.c
@@ -57,7 +57,6 @@ static void set_capacity_scale(unsigned int cpu, unsigned long capacity)
 	per_cpu(cpu_scale, cpu) = capacity;
 }
 
-#ifdef CONFIG_PROC_SYSCTL
 static ssize_t cpu_capacity_show(struct device *dev,
 				 struct device_attribute *attr,
 				 char *buf)
@@ -114,7 +113,6 @@ static int register_cpu_capacity_sysctl(void)
 	return 0;
 }
 subsys_initcall(register_cpu_capacity_sysctl);
-#endif
 
 #ifdef CONFIG_OF
 struct cpu_efficiency {
-- 
2.10.0

[toc] | [next] | [standalone]


#1611655

FromVincent Guittot <vincent.guittot@linaro.org>
Date2017-03-29 09:40 +0200
Message-ID<tqgn0-3Eh-19@gated-at.bofh.it>
In reply to#1609815
On 27 March 2017 at 15:18, Juri Lelli <juri.lelli@arm.com> wrote:
> The sysfs cpu_capacity entry for each CPU has nothing to do with
> PROC_FS, nor it's in /proc/sys path.
>
> Remove such ifdef.
>
> Cc: Russell King <linux@arm.linux.org.uk>
> Reported-and-suggested-by: Sudeep Holla <sudeep.holla@arm.com>
> Fixes: 7e5930aaef5d ('ARM: 8622/3: add sysfs cpu_capacity attribute')
> Signed-off-by: Juri Lelli <juri.lelli@arm.com>

Acked-by: Vincent Guittot <vincent.guittot@linaro.org>

> ---
>  arch/arm/kernel/topology.c | 2 --
>  1 file changed, 2 deletions(-)
>
> diff --git a/arch/arm/kernel/topology.c b/arch/arm/kernel/topology.c
> index 4e4af809606a..162c82aeed96 100644
> --- a/arch/arm/kernel/topology.c
> +++ b/arch/arm/kernel/topology.c
> @@ -57,7 +57,6 @@ static void set_capacity_scale(unsigned int cpu, unsigned long capacity)
>         per_cpu(cpu_scale, cpu) = capacity;
>  }
>
> -#ifdef CONFIG_PROC_SYSCTL
>  static ssize_t cpu_capacity_show(struct device *dev,
>                                  struct device_attribute *attr,
>                                  char *buf)
> @@ -114,7 +113,6 @@ static int register_cpu_capacity_sysctl(void)
>         return 0;
>  }
>  subsys_initcall(register_cpu_capacity_sysctl);
> -#endif
>
>  #ifdef CONFIG_OF
>  struct cpu_efficiency {
> --
> 2.10.0
>

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web