From: Gene Heskett <gheskett@shentel.net>
To: linux-rt-users@vger.kernel.org
Subject: Re: [ANNOUNCE] v4.14.12-rt10
Date: Tue, 9 Jan 2018 09:29:19 -0500 [thread overview]
Message-ID: <201801090929.19444.gheskett@shentel.net> (raw)
In-Reply-To: <20180109123433.u3dh7e2zbr5kgzub@linutronix.de>
On Tuesday 09 January 2018 07:34:33 Sebastian Andrzej Siewior wrote:
> Dear RT folks!
>
> I'm pleased to announce the v4.14.12-rt10 patch set.
>
> Changes since v4.14.8-rt9:
>
> - updated to v4.14.12
>
> - An additional include to avoid a build failure on ARM after a
> header disappeared somewhere during the stable update.
>
> - The patch "nohz: Prevent erroneous tick stop invocations" was
> merged differently upstream. The original issue where a slow box could
> lock up with a pending timer remained. I currently assume that this is
> a RT only issue and keep the patch as RT only.
>
> Known issues
> - A warning triggered in "rcu_note_context_switch" originated
> from SyS_timer_gettime(). The issue was always there, it is now
> visible. Reported by Grygorii Strashko and Daniel Wagner.
>
> You can get this release via the git tree at:
>
>
> git://git.kernel.org/pub/scm/linux/kernel/git/rt/linux-rt-devel.git
> v4.14.12-rt10
No such file or directory. Browsing the site, I am pulling
v4.14.y.rt10.tar.gz. Is this the correct file?
> The RT patch against v4.14.12 can be found here:
>
>
> https://cdn.kernel.org/pub/linux/kernel/projects/rt/4.14/older/patch-4
>.14.12-rt10.patch.xz
>
> The split quilt queue is available at:
>
>
> https://cdn.kernel.org/pub/linux/kernel/projects/rt/4.14/older/patches
>-4.14.12-rt10.tar.xz
>
> The RT-specific delta is appended below.
>
> Sebastian
> diff --git a/include/linux/spinlock_types_raw.h
> b/include/linux/spinlock_types_raw.h ---
> a/include/linux/spinlock_types_raw.h
> +++ b/include/linux/spinlock_types_raw.h
> @@ -1,6 +1,8 @@
> #ifndef __LINUX_SPINLOCK_TYPES_RAW_H
> #define __LINUX_SPINLOCK_TYPES_RAW_H
>
> +#include <linux/types.h>
> +
> #if defined(CONFIG_SMP)
> # include <asm/spinlock_types.h>
> #else
> diff --git a/kernel/softirq.c b/kernel/softirq.c
> --- a/kernel/softirq.c
> +++ b/kernel/softirq.c
> @@ -838,8 +838,13 @@ static inline void tick_irq_exit(void)
> int cpu = smp_processor_id();
>
> /* Make sure that timer wheel updates are propagated */
> +#ifdef CONFIG_PREEMPT_RT_BASE
> if ((idle_cpu(cpu) || tick_nohz_full_cpu(cpu)) &&
> - !need_resched() && !local_softirq_pending()) {
> + !need_resched() && !local_softirq_pending())
> +#else
> + if ((idle_cpu(cpu) && !need_resched()) || tick_nohz_full_cpu(cpu))
> +#endif
> + {
> if (!in_interrupt())
> tick_nohz_irq_exit();
> }
> diff --git a/localversion-rt b/localversion-rt
> --- a/localversion-rt
> +++ b/localversion-rt
> @@ -1 +1 @@
> --rt9
> +-rt10
> --
> To unsubscribe from this list: send the line "unsubscribe
> linux-rt-users" in the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Cheers, Gene Heskett
--
"There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
Genes Web page <http://geneslinuxbox.net:6309/gene>
next prev parent reply other threads:[~2018-01-09 14:29 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-09 12:34 [ANNOUNCE] v4.14.12-rt10 Sebastian Andrzej Siewior
2018-01-09 14:29 ` Gene Heskett [this message]
2018-01-12 18:42 ` Sebastian Andrzej Siewior
2018-01-12 22:41 ` Gene Heskett
2018-01-13 5:07 ` Ralf Mardorf
2018-01-16 3:27 ` Gene Heskett
2018-01-16 7:16 ` Ralf Mardorf
2018-01-16 12:35 ` Gene Heskett
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=201801090929.19444.gheskett@shentel.net \
--to=gheskett@shentel.net \
--cc=linux-rt-users@vger.kernel.org \
/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