diff mbox series

[1/2] sched: Factor out nr_iowait and nr_iowait_cpu

Message ID 1538638927-26846-1-git-send-email-daniel.lezcano@linaro.org
State Superseded
Headers show
Series [1/2] sched: Factor out nr_iowait and nr_iowait_cpu | expand

Commit Message

Daniel Lezcano Oct. 4, 2018, 7:42 a.m. UTC
The function nr_iowait_cpu() can be used directly by nr_iowait() instead
of duplicating code.

Call nr_iowait_cpu() from nr_iowait()

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>

---
 kernel/sched/core.c | 40 +++++++++++++++++++---------------------
 1 file changed, 19 insertions(+), 21 deletions(-)

-- 
2.7.4

Comments

Rafael J. Wysocki Oct. 4, 2018, 7:46 a.m. UTC | #1
On Thu, Oct 4, 2018 at 9:42 AM Daniel Lezcano <daniel.lezcano@linaro.org> wrote:
>

> The function nr_iowait_cpu() can be used directly by nr_iowait() instead

> of duplicating code.

>

> Call nr_iowait_cpu() from nr_iowait()

>

> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>


Reviewed-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>


> ---

>  kernel/sched/core.c | 40 +++++++++++++++++++---------------------

>  1 file changed, 19 insertions(+), 21 deletions(-)

>

> diff --git a/kernel/sched/core.c b/kernel/sched/core.c

> index 625bc98..b88a145 100644

> --- a/kernel/sched/core.c

> +++ b/kernel/sched/core.c

> @@ -2873,6 +2873,24 @@ unsigned long long nr_context_switches(void)

>

>         return sum;

>  }

> +/*

> + * Consumers of these two interfaces, like for example the cpufreq menu

> + * governor are using nonsensical data. Boosting frequency for a CPU that has

> + * IO-wait which might not even end up running the task when it does become

> + * runnable.

> + */

> +

> +unsigned long nr_iowait_cpu(int cpu)

> +{

> +       return atomic_read(&cpu_rq(cpu)->nr_iowait);

> +}

> +

> +void get_iowait_load(unsigned long *nr_waiters, unsigned long *load)

> +{

> +       struct rq *rq = this_rq();

> +       *nr_waiters = atomic_read(&rq->nr_iowait);

> +       *load = rq->load.weight;

> +}

>

>  /*

>   * IO-wait accounting, and how its mostly bollocks (on SMP).

> @@ -2909,31 +2927,11 @@ unsigned long nr_iowait(void)

>         unsigned long i, sum = 0;

>

>         for_each_possible_cpu(i)

> -               sum += atomic_read(&cpu_rq(i)->nr_iowait);

> +               sum += nr_iowait_cpu(i);

>

>         return sum;

>  }

>

> -/*

> - * Consumers of these two interfaces, like for example the cpufreq menu

> - * governor are using nonsensical data. Boosting frequency for a CPU that has

> - * IO-wait which might not even end up running the task when it does become

> - * runnable.

> - */

> -

> -unsigned long nr_iowait_cpu(int cpu)

> -{

> -       struct rq *this = cpu_rq(cpu);

> -       return atomic_read(&this->nr_iowait);

> -}

> -

> -void get_iowait_load(unsigned long *nr_waiters, unsigned long *load)

> -{

> -       struct rq *rq = this_rq();

> -       *nr_waiters = atomic_read(&rq->nr_iowait);

> -       *load = rq->load.weight;

> -}

> -

>  #ifdef CONFIG_SMP

>

>  /*

> --

> 2.7.4

>
diff mbox series

Patch

diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index 625bc98..b88a145 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
@@ -2873,6 +2873,24 @@  unsigned long long nr_context_switches(void)
 
 	return sum;
 }
+/*
+ * Consumers of these two interfaces, like for example the cpufreq menu
+ * governor are using nonsensical data. Boosting frequency for a CPU that has
+ * IO-wait which might not even end up running the task when it does become
+ * runnable.
+ */
+
+unsigned long nr_iowait_cpu(int cpu)
+{
+	return atomic_read(&cpu_rq(cpu)->nr_iowait);
+}
+
+void get_iowait_load(unsigned long *nr_waiters, unsigned long *load)
+{
+	struct rq *rq = this_rq();
+	*nr_waiters = atomic_read(&rq->nr_iowait);
+	*load = rq->load.weight;
+}
 
 /*
  * IO-wait accounting, and how its mostly bollocks (on SMP).
@@ -2909,31 +2927,11 @@  unsigned long nr_iowait(void)
 	unsigned long i, sum = 0;
 
 	for_each_possible_cpu(i)
-		sum += atomic_read(&cpu_rq(i)->nr_iowait);
+		sum += nr_iowait_cpu(i);
 
 	return sum;
 }
 
-/*
- * Consumers of these two interfaces, like for example the cpufreq menu
- * governor are using nonsensical data. Boosting frequency for a CPU that has
- * IO-wait which might not even end up running the task when it does become
- * runnable.
- */
-
-unsigned long nr_iowait_cpu(int cpu)
-{
-	struct rq *this = cpu_rq(cpu);
-	return atomic_read(&this->nr_iowait);
-}
-
-void get_iowait_load(unsigned long *nr_waiters, unsigned long *load)
-{
-	struct rq *rq = this_rq();
-	*nr_waiters = atomic_read(&rq->nr_iowait);
-	*load = rq->load.weight;
-}
-
 #ifdef CONFIG_SMP
 
 /*