public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Maneesh Soni <maneesh@in.ibm.com>
To: Oleg Nesterov <oleg@tv-sign.ru>, Nagesh Sharyathi <sharyathi@in.ibm.com>
Cc: Andrew Morton <akpm@osdl.org>,
	linux-kernel@vger.kernel.org, Juergen Kreileder <jk@blackdown.de>,
	Benjamin Herrenschmidt <benh@kernel.crashing.org>
Subject: Re: [PATCH] fix __mod_timer vs __run_timers deadlock.
Date: Mon, 2 May 2005 09:38:33 +0530	[thread overview]
Message-ID: <20050502040832.GA5471@in.ibm.com> (raw)
In-Reply-To: <42748B75.D6CBF829@tv-sign.ru>

On Sun, May 01, 2005 at 11:55:33AM +0400, Oleg Nesterov wrote:
> The bug was identified by Maneesh Soni.
> 

Thanks, to Sharyathi too as he is the first to see the problem and 
provided kdump to us. I just did initial kdump analysis.

Sharyathi, it would be great if you can test the following patch in your
setup.

Thanks
Maneesh


> When __mod_timer() changes timer's base it waits for the completion
> of timer->function. It is just stupid: the caller of __mod_timer()
> can held locks which would prevent completion of the timer's handler.
> 
> Solution: do not change the base of the currently running timer.
> 
> Side effect: __mod_timer() doesn't garantees anymore that timer will
> run on the local cpu.
> 
> Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
> 
> --- rc2-mm3/kernel/timer.c~	2005-04-30 18:43:56.000000000 +0400
> +++ rc2-mm3/kernel/timer.c	2005-05-01 14:29:02.000000000 +0400
> @@ -212,41 +212,39 @@ int __mod_timer(struct timer_list *timer
>  	timer_base_t *base;
>  	tvec_base_t *new_base;
>  	unsigned long flags;
> -	int ret = -1;
> +	int ret;
>  
>  	BUG_ON(!timer->function);
>  	check_timer(timer);
> -
> -	do {
> -		base = lock_timer_base(timer, &flags);
> -		new_base = &__get_cpu_var(tvec_bases);
> -
> -		/* Ensure the timer is serialized. */
> -		if (base != &new_base->t_base
> -			&& base->running_timer == timer)
> -			goto unlock;
> -
> -		ret = 0;
> -		if (timer_pending(timer)) {
> -			detach_timer(timer, 0);
> -			ret = 1;
> -		}
> -
> -		if (base != &new_base->t_base) {
> -			timer->base = NULL;
> -			/* Safe: the timer can't be seen via ->entry,
> -			 * and lock_timer_base checks ->base != 0. */
> -			spin_unlock(&base->lock);
> -			base = &new_base->t_base;
> -			spin_lock(&base->lock);
> -			timer->base = base;
> -		}
> -
> -		timer->expires = expires;
> -		internal_add_timer(new_base, timer);
> -unlock:
> -		spin_unlock_irqrestore(&base->lock, flags);
> -	} while (ret < 0);
> +
> +	base = lock_timer_base(timer, &flags);
> +
> +	ret = 0;
> +	if (timer_pending(timer)) {
> +		detach_timer(timer, 0);
> +		ret = 1;
> +	}
> +
> +	new_base = &__get_cpu_var(tvec_bases);
> +
> +	if (base != &new_base->t_base) {
> +		if (unlikely(base->running_timer == timer))
> +			/* Don't change timer's base while it is running.
> +			 * Needed for serialization of timer wrt itself. */
> +			new_base = container_of(base, tvec_base_t, t_base);
> +		else {
> +			timer->base = NULL;
> +			/* Safe: the timer can't be seen via ->entry,
> +			 * and lock_timer_base checks ->base != 0. */
> +			spin_unlock(&base->lock);
> +			spin_lock(&new_base->t_base.lock);
> +			timer->base = &new_base->t_base;
> +		}
> +	}
> +
> +	timer->expires = expires;
> +	internal_add_timer(new_base, timer);
> +	spin_unlock_irqrestore(&new_base->t_base.lock, flags);
>  
>  	return ret;
>  }

-- 
Maneesh Soni
Linux Technology Center, 
IBM India Software Labs,
Bangalore, India
email: maneesh@in.ibm.com
Phone: 91-80-25044990

      parent reply	other threads:[~2005-05-02  4:10 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-05-01  7:55 [PATCH] fix __mod_timer vs __run_timers deadlock Oleg Nesterov
2005-05-01  9:31 ` Andrew Morton
2005-05-02 22:50   ` Juergen Kreileder
2005-05-03  0:13     ` Benjamin Herrenschmidt
2005-05-03  1:24       ` Lee Revell
2005-05-03  1:28         ` Benjamin Herrenschmidt
2005-05-03  1:33         ` Zwane Mwaikambo
2005-05-03  1:35       ` Juergen Kreileder
2005-05-03  2:48         ` Paul Mackerras
2005-05-03 18:51           ` David S. Miller
2005-05-03 23:44             ` Benjamin Herrenschmidt
2005-05-03 23:39               ` David S. Miller
2005-05-04  0:05                 ` Benjamin Herrenschmidt
2005-05-02  4:08 ` Maneesh Soni [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=20050502040832.GA5471@in.ibm.com \
    --to=maneesh@in.ibm.com \
    --cc=akpm@osdl.org \
    --cc=benh@kernel.crashing.org \
    --cc=jk@blackdown.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=oleg@tv-sign.ru \
    --cc=sharyathi@in.ibm.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox