linux-rt-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Juri Lelli <juri.lelli@gmail.com>
To: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Cc: linux-rt-users <linux-rt-users@vger.kernel.org>,
	LKML <linux-kernel@vger.kernel.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	rostedt@goodmis.org, John Kacur <jkacur@redhat.com>
Subject: Re: [ANNOUNCE] 3.14.3-rt5
Date: Tue, 13 May 2014 15:30:20 +0200	[thread overview]
Message-ID: <20140513153020.35c0e9d08db60c7b3919e593@gmail.com> (raw)
In-Reply-To: <20140509181214.GK29014@linutronix.de>

Hi,

On Fri, 9 May 2014 20:12:14 +0200
Sebastian Andrzej Siewior <bigeasy@linutronix.de> wrote:

> Dear RT folks!
> 
> I'm pleased to announce the v3.14.3-rt5 patch set.
> 
> Changes since v3.14.3-rt4
> - remove one of the two identical rt_mutex_init() definitions. A patch
>   from Steven Rostedt
> - use EXPORT_SYMBOL() on __rt_mutex_init() and
>   rt_down_write_nested_lock(). The former was dropped accidently and is
>   needed by some binary only modules, the latter was requsted by the f2fs
>   module. Patch by Joakim Hernberg.
> - during v3.14 porting I accidently dropped preempt_check_resched() in
>   the non-preempt case which means configs non-preempt configs did not
>   build. Reported by Yang Honggang.
> - NETCONSOLE is no longer disabled on RT. Daniel Bristot de Oliveira did
>   some testing and did not find anything wrong it. That means it can be
>   enabled if someone needs/wants it.
> - rt_read_lock() uses rwlock_acquire() instead of rwlock_acquire_read()
>   for lockdep annotation. It was different compared to what the trylock
>   variant used and on RT both act the same way. Patch by Mike Galbraith.
> - the tracing code wrongly disable preemption while shrinking the ring
>   buffer. Reported by Stanislav Meduna.
> 
> Known issues:
> 
>       - bcache is disabled.
> 
>       - lazy preempt on x86_64 leads to a crash with some load.
> 
>       - CPU hotplug works in general. Steven's test script however
>         deadlocks usually on the second invocation.
> 

Also SCHED_DEADLINE dies without the following.

Thanks,

- Juri

---From 3ca5943538c728399037823e5632431bc2da707c Mon Sep 17 00:00:00 2001
From: Juri Lelli <juri.lelli@gmail.com>
Date: Tue, 13 May 2014 15:21:16 +0200
Subject: [PATCH] sched/deadline: dl_task_timer has to be irqsafe

As for rt_period_timer, dl_task_timer has to be irqsafe.

Signed-off-by: Juri Lelli <juri.lelli@gmail.com>
---
 kernel/sched/deadline.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/kernel/sched/deadline.c b/kernel/sched/deadline.c
index 6e79b3f..48b04ce 100644
--- a/kernel/sched/deadline.c
+++ b/kernel/sched/deadline.c
@@ -537,6 +537,7 @@ void init_dl_task_timer(struct sched_dl_entity *dl_se)
 
 	hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
 	timer->function = dl_task_timer;
+	timer->irqsafe = 1;
 }
 
 static
-- 
1.7.10.4

  parent reply	other threads:[~2014-05-13 13:30 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-09 18:12 [ANNOUNCE] 3.14.3-rt5 Sebastian Andrzej Siewior
2014-05-09 22:54 ` Pavel Vasilyev
2014-05-13 15:33   ` Sebastian Andrzej Siewior
2014-05-10  4:15 ` Mike Galbraith
2014-05-13 15:40   ` Sebastian Andrzej Siewior
2014-05-14  3:10     ` Mike Galbraith
2014-05-16 13:53     ` [patch] rt/sched: fix resursion when CONTEXT_TRACKING and PREEMPT_LAZY are enabled Mike Galbraith
2014-05-25  8:16       ` [patch v2] " Mike Galbraith
2014-05-13 13:30 ` Juri Lelli [this message]
2015-02-16 11:29   ` [ANNOUNCE] 3.14.3-rt5 Sebastian Andrzej Siewior
2015-02-16 12:34     ` Juri Lelli
2014-05-17  3:36 ` [PATCH 3.14-rt] sched/numa: Fix task_numa_free() lockdep splat Mike Galbraith
2014-05-27 18:18   ` Steven Rostedt
2014-05-27 18:25     ` Peter Zijlstra
2014-05-27 18:52       ` Steven Rostedt
2014-05-27 18:53         ` Steven Rostedt
2014-05-27 18:55   ` Steven Rostedt

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=20140513153020.35c0e9d08db60c7b3919e593@gmail.com \
    --to=juri.lelli@gmail.com \
    --cc=bigeasy@linutronix.de \
    --cc=jkacur@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rt-users@vger.kernel.org \
    --cc=rostedt@goodmis.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).