From: Yong Zhang <yong.zhang0@gmail.com>
To: Oleg Nesterov <oleg@redhat.com>
Cc: linux-kernel@vger.kernel.org, tglx@linutronix.de,
akpm@linux-foundation.org, mingo@elte.hu, peterz@infradead.org
Subject: Re: [RFC PATCH 1/3] timer: make try_to_del_timer_sync() safe on both hardirq context and UP
Date: Wed, 25 Aug 2010 21:21:50 +0800 [thread overview]
Message-ID: <20100825132150.GA3468@zhy> (raw)
In-Reply-To: <AANLkTimUb4GCdacq0C5+k=q9TrTMW956iUY-00ZpXsrX@mail.gmail.com>
Oops, web sending break the thread.
Maybe I should show this change in V2.
coming soon.
-Yong
On Wed, Aug 25, 2010 at 02:26:12PM +0800, Yong Zhang wrote:
> From: Yong Zhang <yong.zhang@windriver.com>
>
> In commit fd450b7318b75343fd76b3d95416853e34e72c95, it was saying
> try_to_del_timer_sync() can be used in interrupt context.
>
> But because base->running_timer is SMP special, this lead to
> unsymmetry try_to_del_timer_sync() on UP and SMP.
>
> We can make running_timer live on everywhere, then try_to_del_timer_sync()
> is also UP safe and can be used in hardirq context.
>
> Signed-off-by: Yong Zhang <yong.zhang0@gmail.com>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Cc: Andrew Morton <akpm@linux-foundation.org>
> Cc: Ingo Molnar <mingo@elte.hu>
> Cc: Oleg Nesterov <oleg@redhat.com>
> ---
> include/linux/timer.h | 4 ++--
> kernel/timer.c | 6 +-----
> 2 files changed, 3 insertions(+), 7 deletions(-)
>
> diff --git a/include/linux/timer.h b/include/linux/timer.h
> index 38cf093..225c4ce 100644
> --- a/include/linux/timer.h
> +++ b/include/linux/timer.h
> @@ -248,11 +248,11 @@ static inline void
> timer_stats_timer_clear_start_info(struct timer_list *timer)
>
> extern void add_timer(struct timer_list *timer);
>
> +extern int try_to_del_timer_sync(struct timer_list *timer);
> +
> #ifdef CONFIG_SMP
> - extern int try_to_del_timer_sync(struct timer_list *timer);
> extern int del_timer_sync(struct timer_list *timer);
> #else
> -# define try_to_del_timer_sync(t) del_timer(t)
> # define del_timer_sync(t) del_timer(t)
> #endif
>
> diff --git a/kernel/timer.c b/kernel/timer.c
> index 97bf05b..e031eb4 100644
> --- a/kernel/timer.c
> +++ b/kernel/timer.c
> @@ -347,9 +347,7 @@ EXPORT_SYMBOL_GPL(set_timer_slack);
> static inline void set_running_timer(struct tvec_base *base,
> struct timer_list *timer)
> {
> -#ifdef CONFIG_SMP
> base->running_timer = timer;
> -#endif
> }
>
> static void internal_add_timer(struct tvec_base *base, struct
> timer_list *timer)
> @@ -936,15 +934,12 @@ int del_timer(struct timer_list *timer)
> }
> EXPORT_SYMBOL(del_timer);
>
> -#ifdef CONFIG_SMP
> /**
> * try_to_del_timer_sync - Try to deactivate a timer
> * @timer: timer do del
> *
> * This function tries to deactivate a timer. Upon successful (ret >= 0)
> * exit the timer is not queued and the handler is not running on any CPU.
> - *
> - * It must not be called from interrupt contexts.
> */
> int try_to_del_timer_sync(struct timer_list *timer)
> {
> @@ -973,6 +968,7 @@ out:
> }
> EXPORT_SYMBOL(try_to_del_timer_sync);
>
> +#ifdef CONFIG_SMP
> /**
> * del_timer_sync - deactivate a timer and wait for the handler to finish.
> * @timer: the timer to be deactivated
> --
> 1.7.0.4
prev parent reply other threads:[~2010-08-25 13:22 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-08-25 6:26 [RFC PATCH 1/3] timer: make try_to_del_timer_sync() safe on both hardirq context and UP Yong Zhang
2010-08-25 13:21 ` Yong Zhang [this message]
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=20100825132150.GA3468@zhy \
--to=yong.zhang0@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=oleg@redhat.com \
--cc=peterz@infradead.org \
--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.