All of lore.kernel.org
 help / color / mirror / Atom feed
From: Gerlando Falauto <gerlando.falauto@keymile.com>
To: John Stultz <john.stultz@linaro.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
	Ingo Molnar <mingo@kernel.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	Mathieu Desnoyers <mathieu.desnoyers@efficios.com>,
	stable <stable@vger.kernel.org>
Subject: Re: [PATCH] timekeeping: Fix HRTICK related deadlock from ntp lock changes
Date: Thu, 12 Sep 2013 16:38:24 +0200	[thread overview]
Message-ID: <5231D1E0.9000800@keymile.com> (raw)
In-Reply-To: <1378943457-27314-1-git-send-email-john.stultz@linaro.org>

Hi,

On 09/12/2013 01:50 AM, John Stultz wrote:
[...]
>
> The deadlock was introduced by 06c017fdd4dc48451a (timekeeping:
> Hold timekeepering locks in do_adjtimex and hardpps) in 3.10
>
> This patch avoids this deadlock, by moving the call to
> schedule_delayed_work() outside of the timekeeper lock
> critical section.
>
> Cc: Ingo Molnar <mingo@kernel.org>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Cc: Gerlando Falauto <gerlando.falauto@keymile.com>
> Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
> Cc: stable <stable@vger.kernel.org> #3.11, 3.10
> Reported-by: Gerlando Falauto <gerlando.falauto@keymile.com>
> Tested-by: Lin Ming <minggr@gmail.com>
> Signed-off-by: John Stultz <john.stultz@linaro.org>

For what it's worth (I guess it's a bit late now):

Tested-by: Gerlando Falauto <gerlando.falauto@keymile.com>

Thanks!
Gerlando

> ---
>   include/linux/timex.h     | 1 +
>   kernel/time/ntp.c         | 6 ++----
>   kernel/time/timekeeping.c | 2 ++
>   3 files changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/include/linux/timex.h b/include/linux/timex.h
> index b3726e6..dd3edd7 100644
> --- a/include/linux/timex.h
> +++ b/include/linux/timex.h
> @@ -141,6 +141,7 @@ extern int do_adjtimex(struct timex *);
>   extern void hardpps(const struct timespec *, const struct timespec *);
>
>   int read_current_timer(unsigned long *timer_val);
> +void ntp_notify_cmos_timer(void);
>
>   /* The clock frequency of the i8253/i8254 PIT */
>   #define PIT_TICK_RATE 1193182ul
> diff --git a/kernel/time/ntp.c b/kernel/time/ntp.c
> index 8f5b3b9..bb22151 100644
> --- a/kernel/time/ntp.c
> +++ b/kernel/time/ntp.c
> @@ -516,13 +516,13 @@ static void sync_cmos_clock(struct work_struct *work)
>   	schedule_delayed_work(&sync_cmos_work, timespec_to_jiffies(&next));
>   }
>
> -static void notify_cmos_timer(void)
> +void ntp_notify_cmos_timer(void)
>   {
>   	schedule_delayed_work(&sync_cmos_work, 0);
>   }
>
>   #else
> -static inline void notify_cmos_timer(void) { }
> +void ntp_notify_cmos_timer(void) { }
>   #endif
>
>
> @@ -687,8 +687,6 @@ int __do_adjtimex(struct timex *txc, struct timespec *ts, s32 *time_tai)
>   	if (!(time_status & STA_NANO))
>   		txc->time.tv_usec /= NSEC_PER_USEC;
>
> -	notify_cmos_timer();
> -
>   	return result;
>   }
>
> diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c
> index 48b9fff..947ba25 100644
> --- a/kernel/time/timekeeping.c
> +++ b/kernel/time/timekeeping.c
> @@ -1703,6 +1703,8 @@ int do_adjtimex(struct timex *txc)
>   	write_seqcount_end(&timekeeper_seq);
>   	raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
>
> +	ntp_notify_cmos_timer();
> +
>   	return ret;
>   }
>
>


      parent reply	other threads:[~2013-09-12 14:38 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-09-11 23:50 [PATCH] timekeeping: Fix HRTICK related deadlock from ntp lock changes John Stultz
2013-09-12 11:11 ` [tip:timers/urgent] " tip-bot for John Stultz
2013-09-16 16:04   ` Mathieu Desnoyers
2013-09-17  7:07     ` Ingo Molnar
2013-09-17  8:09       ` Mathieu Desnoyers
2013-09-17  8:26         ` Ingo Molnar
2013-09-17 16:33           ` Mathieu Desnoyers
2013-09-12 14:38 ` Gerlando Falauto [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=5231D1E0.9000800@keymile.com \
    --to=gerlando.falauto@keymile.com \
    --cc=john.stultz@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mathieu.desnoyers@efficios.com \
    --cc=mingo@kernel.org \
    --cc=stable@vger.kernel.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.