All of lore.kernel.org
 help / color / mirror / Atom feed
From: Viresh Kumar <viresh.kumar@linaro.org>
To: Vincent Guittot <vincent.guittot@linaro.org>
Cc: linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, linux@armlinux.org.uk,
	gregkh@linuxfoundation.org, rafael@kernel.org, mingo@redhat.com,
	peterz@infradead.org, quentin.perret@arm.com
Subject: Re: [PATCH] sched/topology: remove unused sd param from arch_scale_cpu_capacity()
Date: Tue, 18 Jun 2019 14:56:01 +0530	[thread overview]
Message-ID: <20190618092601.2aws7kujvk2pulwt@vireshk-i7> (raw)
In-Reply-To: <1560783617-5827-1-git-send-email-vincent.guittot@linaro.org>

On 17-06-19, 17:00, Vincent Guittot wrote:
> struct sched_domain *sd parameter is not used anymore in
> arch_scale_cpu_capacity() so we can remove it.
> 
> Signed-off-by: Vincent Guittot <vincent.guittot@linaro.org>
> ---
>  arch/arm/kernel/topology.c       |  2 +-
>  drivers/base/arch_topology.c     |  6 +++---
>  include/linux/arch_topology.h    |  2 +-
>  include/linux/energy_model.h     |  2 +-
>  include/linux/sched/topology.h   | 14 +++-----------
>  kernel/power/energy_model.c      |  2 +-
>  kernel/sched/cpufreq_schedutil.c |  2 +-
>  kernel/sched/deadline.c          |  2 +-
>  kernel/sched/fair.c              |  6 +++---
>  kernel/sched/pelt.c              |  2 +-
>  kernel/sched/pelt.h              |  2 +-
>  kernel/sched/sched.h             |  2 +-
>  kernel/sched/topology.c          |  8 ++++----
>  13 files changed, 22 insertions(+), 30 deletions(-)

Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>

-- 
viresh

WARNING: multiple messages have this Message-ID (diff)
From: Viresh Kumar <viresh.kumar@linaro.org>
To: Vincent Guittot <vincent.guittot@linaro.org>
Cc: rafael@kernel.org, peterz@infradead.org,
	gregkh@linuxfoundation.org, linux-pm@vger.kernel.org,
	linux@armlinux.org.uk, linux-kernel@vger.kernel.org,
	quentin.perret@arm.com, mingo@redhat.com,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH] sched/topology: remove unused sd param from arch_scale_cpu_capacity()
Date: Tue, 18 Jun 2019 14:56:01 +0530	[thread overview]
Message-ID: <20190618092601.2aws7kujvk2pulwt@vireshk-i7> (raw)
In-Reply-To: <1560783617-5827-1-git-send-email-vincent.guittot@linaro.org>

On 17-06-19, 17:00, Vincent Guittot wrote:
> struct sched_domain *sd parameter is not used anymore in
> arch_scale_cpu_capacity() so we can remove it.
> 
> Signed-off-by: Vincent Guittot <vincent.guittot@linaro.org>
> ---
>  arch/arm/kernel/topology.c       |  2 +-
>  drivers/base/arch_topology.c     |  6 +++---
>  include/linux/arch_topology.h    |  2 +-
>  include/linux/energy_model.h     |  2 +-
>  include/linux/sched/topology.h   | 14 +++-----------
>  kernel/power/energy_model.c      |  2 +-
>  kernel/sched/cpufreq_schedutil.c |  2 +-
>  kernel/sched/deadline.c          |  2 +-
>  kernel/sched/fair.c              |  6 +++---
>  kernel/sched/pelt.c              |  2 +-
>  kernel/sched/pelt.h              |  2 +-
>  kernel/sched/sched.h             |  2 +-
>  kernel/sched/topology.c          |  8 ++++----
>  13 files changed, 22 insertions(+), 30 deletions(-)

Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>

-- 
viresh

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2019-06-18  9:26 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-17 15:00 [PATCH] sched/topology: remove unused sd param from arch_scale_cpu_capacity() Vincent Guittot
2019-06-17 15:00 ` Vincent Guittot
2019-06-17 17:07 ` Valentin Schneider
2019-06-17 17:07   ` Valentin Schneider
2019-06-18  9:34   ` Peter Zijlstra
2019-06-18  9:34     ` Peter Zijlstra
2019-06-18  9:37     ` Valentin Schneider
2019-06-18  9:37       ` Valentin Schneider
2019-06-18  9:45     ` Vincent Guittot
2019-06-18  9:45       ` Vincent Guittot
2019-06-18  9:26 ` Viresh Kumar [this message]
2019-06-18  9:26   ` Viresh Kumar
2019-06-25  8:23 ` [tip:sched/core] sched/topology: Remove unused 'sd' parameter " tip-bot for Vincent Guittot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190618092601.2aws7kujvk2pulwt@vireshk-i7 \
    --to=viresh.kumar@linaro.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=mingo@redhat.com \
    --cc=peterz@infradead.org \
    --cc=quentin.perret@arm.com \
    --cc=rafael@kernel.org \
    --cc=vincent.guittot@linaro.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.