From: Krzysztof Kozlowski <k.kozlowski@samsung.com>
To: Alexey Klimov <klimov.linux@gmail.com>,
linux-samsung-soc@vger.kernel.org
Cc: sboyd@codeaurora.org, t.dakhran@gmail.com, kgene@kernel.org,
Daniel Lezcano <daniel.lezcano@linaro.org>,
Thomas Gleixner <tglx@linutronix.de>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] clocksource: exynos_mct: remove unneeded container_of()
Date: Mon, 22 Jun 2015 09:04:06 +0900 [thread overview]
Message-ID: <558750F6.8020507@samsung.com> (raw)
In-Reply-To: <1434919299.4096.1.camel@mtux>
On 22.06.2015 05:41, Alexey Klimov wrote:
> Patch removes unneeded container_of() macro
> in exynos4_local_timer_setup(). Instead let's pass mevt pointer
> to setup and stop functions from exynos4_mct_cpu_notify()
> and let them get evt pointer.
>
> Tested on odroid-xu3.
>
> Signed-off-by: Alexey Klimov <klimov.linux@gmail.com>
> Acked-by: Stephen Boyd <sboyd@codeaurora.org>
Looks good, the internal interface now seems more consistent.
Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
However you forgot to mail this to maintainers of clocksource subsystem
(Cc'ed: Daniel, Thomas, LKML).
Best regards,
Krzysztof
> ---
> drivers/clocksource/exynos_mct.c | 16 ++++++++--------
> 1 file changed, 8 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/clocksource/exynos_mct.c b/drivers/clocksource/exynos_mct.c
> index 83564c9..752a37c 100644
> --- a/drivers/clocksource/exynos_mct.c
> +++ b/drivers/clocksource/exynos_mct.c
> @@ -446,13 +446,11 @@ static irqreturn_t exynos4_mct_tick_isr(int irq, void *dev_id)
> return IRQ_HANDLED;
> }
>
> -static int exynos4_local_timer_setup(struct clock_event_device *evt)
> +static int exynos4_local_timer_setup(struct mct_clock_event_device *mevt)
> {
> - struct mct_clock_event_device *mevt;
> + struct clock_event_device *evt = &mevt->evt;
> unsigned int cpu = smp_processor_id();
>
> - mevt = container_of(evt, struct mct_clock_event_device, evt);
> -
> mevt->base = EXYNOS4_MCT_L_BASE(cpu);
> snprintf(mevt->name, sizeof(mevt->name), "mct_tick%d", cpu);
>
> @@ -484,8 +482,10 @@ static int exynos4_local_timer_setup(struct clock_event_device *evt)
> return 0;
> }
>
> -static void exynos4_local_timer_stop(struct clock_event_device *evt)
> +static void exynos4_local_timer_stop(struct mct_clock_event_device *mevt)
> {
> + struct clock_event_device *evt = &mevt->evt;
> +
> evt->set_mode(CLOCK_EVT_MODE_UNUSED, evt);
> if (mct_int_type == MCT_INT_SPI)
> free_irq(evt->irq, this_cpu_ptr(&percpu_mct_tick));
> @@ -505,11 +505,11 @@ static int exynos4_mct_cpu_notify(struct notifier_block *self,
> switch (action & ~CPU_TASKS_FROZEN) {
> case CPU_STARTING:
> mevt = this_cpu_ptr(&percpu_mct_tick);
> - exynos4_local_timer_setup(&mevt->evt);
> + exynos4_local_timer_setup(mevt);
> break;
> case CPU_DYING:
> mevt = this_cpu_ptr(&percpu_mct_tick);
> - exynos4_local_timer_stop(&mevt->evt);
> + exynos4_local_timer_stop(mevt);
> break;
> }
>
> @@ -557,7 +557,7 @@ static void __init exynos4_timer_resources(struct device_node *np, void __iomem
> goto out_irq;
>
> /* Immediately configure the timer on the boot CPU */
> - exynos4_local_timer_setup(&mevt->evt);
> + exynos4_local_timer_setup(mevt);
> return;
>
> out_irq:
>
WARNING: multiple messages have this Message-ID (diff)
From: Krzysztof Kozlowski <k.kozlowski@samsung.com>
To: Alexey Klimov <klimov.linux@gmail.com>,
linux-samsung-soc@vger.kernel.org
Cc: sboyd@codeaurora.org, t.dakhran@gmail.com, kgene@kernel.org,
Daniel Lezcano <daniel.lezcano@linaro.org>,
Thomas Gleixner <tglx@linutronix.de>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] clocksource: exynos_mct: remove unneeded container_of()
Date: Mon, 22 Jun 2015 09:04:06 +0900 [thread overview]
Message-ID: <558750F6.8020507@samsung.com> (raw)
In-Reply-To: <1434919299.4096.1.camel@mtux>
On 22.06.2015 05:41, Alexey Klimov wrote:
> Patch removes unneeded container_of() macro
> in exynos4_local_timer_setup(). Instead let's pass mevt pointer
> to setup and stop functions from exynos4_mct_cpu_notify()
> and let them get evt pointer.
>
> Tested on odroid-xu3.
>
> Signed-off-by: Alexey Klimov <klimov.linux@gmail.com>
> Acked-by: Stephen Boyd <sboyd@codeaurora.org>
Looks good, the internal interface now seems more consistent.
Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
However you forgot to mail this to maintainers of clocksource subsystem
(Cc'ed: Daniel, Thomas, LKML).
Best regards,
Krzysztof
> ---
> drivers/clocksource/exynos_mct.c | 16 ++++++++--------
> 1 file changed, 8 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/clocksource/exynos_mct.c b/drivers/clocksource/exynos_mct.c
> index 83564c9..752a37c 100644
> --- a/drivers/clocksource/exynos_mct.c
> +++ b/drivers/clocksource/exynos_mct.c
> @@ -446,13 +446,11 @@ static irqreturn_t exynos4_mct_tick_isr(int irq, void *dev_id)
> return IRQ_HANDLED;
> }
>
> -static int exynos4_local_timer_setup(struct clock_event_device *evt)
> +static int exynos4_local_timer_setup(struct mct_clock_event_device *mevt)
> {
> - struct mct_clock_event_device *mevt;
> + struct clock_event_device *evt = &mevt->evt;
> unsigned int cpu = smp_processor_id();
>
> - mevt = container_of(evt, struct mct_clock_event_device, evt);
> -
> mevt->base = EXYNOS4_MCT_L_BASE(cpu);
> snprintf(mevt->name, sizeof(mevt->name), "mct_tick%d", cpu);
>
> @@ -484,8 +482,10 @@ static int exynos4_local_timer_setup(struct clock_event_device *evt)
> return 0;
> }
>
> -static void exynos4_local_timer_stop(struct clock_event_device *evt)
> +static void exynos4_local_timer_stop(struct mct_clock_event_device *mevt)
> {
> + struct clock_event_device *evt = &mevt->evt;
> +
> evt->set_mode(CLOCK_EVT_MODE_UNUSED, evt);
> if (mct_int_type == MCT_INT_SPI)
> free_irq(evt->irq, this_cpu_ptr(&percpu_mct_tick));
> @@ -505,11 +505,11 @@ static int exynos4_mct_cpu_notify(struct notifier_block *self,
> switch (action & ~CPU_TASKS_FROZEN) {
> case CPU_STARTING:
> mevt = this_cpu_ptr(&percpu_mct_tick);
> - exynos4_local_timer_setup(&mevt->evt);
> + exynos4_local_timer_setup(mevt);
> break;
> case CPU_DYING:
> mevt = this_cpu_ptr(&percpu_mct_tick);
> - exynos4_local_timer_stop(&mevt->evt);
> + exynos4_local_timer_stop(mevt);
> break;
> }
>
> @@ -557,7 +557,7 @@ static void __init exynos4_timer_resources(struct device_node *np, void __iomem
> goto out_irq;
>
> /* Immediately configure the timer on the boot CPU */
> - exynos4_local_timer_setup(&mevt->evt);
> + exynos4_local_timer_setup(mevt);
> return;
>
> out_irq:
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
Please read the FAQ at http://www.tux.org/lkml/
next prev parent reply other threads:[~2015-06-22 0:04 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-14 22:50 [question] [PATCH RFC] clocksource: exynos_mct: remove unneeded container_of() Alexey Klimov
2015-06-15 19:39 ` Stephen Boyd
2015-06-21 20:41 ` [PATCH] " Alexey Klimov
2015-06-22 0:04 ` Krzysztof Kozlowski [this message]
2015-06-22 0:04 ` Krzysztof Kozlowski
2015-06-29 9:09 ` Daniel Lezcano
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=558750F6.8020507@samsung.com \
--to=k.kozlowski@samsung.com \
--cc=daniel.lezcano@linaro.org \
--cc=kgene@kernel.org \
--cc=klimov.linux@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=sboyd@codeaurora.org \
--cc=t.dakhran@gmail.com \
--cc=tglx@linutronix.de \
/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.