* [ANNOUNCE] 3.18.17-rt14
@ 2015-07-02 19:25 Steven Rostedt
2015-07-20 9:33 ` [PATCH 1/1] 3.18.17-rt14 locktorture: Do NOT include rwlock.h directly linuxball
0 siblings, 1 reply; 5+ messages in thread
From: Steven Rostedt @ 2015-07-02 19:25 UTC (permalink / raw)
To: LKML, linux-rt-users
Cc: Thomas Gleixner, Carsten Emde, John Kacur,
Sebastian Andrzej Siewior
Dear RT Folks,
I'm pleased to announce the 3.18.17-rt14 stable release.
This release is just an update to the new stable 3.18.17 version
and no RT specific changes have been made.
You can get this release via the git tree at:
git://git.kernel.org/pub/scm/linux/kernel/git/rt/linux-stable-rt.git
branch: v3.18-rt
Head SHA1: bba903c2bb20dbb6c57a8ba3889f9b8f09dcc6e0
Or to build 3.18.17-rt14 directly, the following patches should be applied:
http://www.kernel.org/pub/linux/kernel/v3.x/linux-3.18.tar.xz
http://www.kernel.org/pub/linux/kernel/v3.x/patch-3.18.17.xz
http://www.kernel.org/pub/linux/kernel/projects/rt/3.18/patch-3.18.17-rt14.patch.xz
Enjoy,
-- Steve
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/1] 3.18.17-rt14 locktorture: Do NOT include rwlock.h directly
2015-07-02 19:25 [ANNOUNCE] 3.18.17-rt14 Steven Rostedt
@ 2015-07-20 9:33 ` linuxball
2015-07-20 15:47 ` Sebastian Andrzej Siewior
0 siblings, 1 reply; 5+ messages in thread
From: linuxball @ 2015-07-20 9:33 UTC (permalink / raw)
To: linux-rt-users
Cc: Steven Rostedt, Thomas Gleixner, Carsten Emde, John Kacur,
Sebastian Andrzej Siewior
Including rwlock.h directly will cause kernel builds to fail
if CONFIG_PREEMPT_RT_FULL is defined. The correct header file
(rwlock_rt.h OR rwlock.h) will be included by spinlock.h which
is included by locktorture.c anyway.
---
kernel/locking/locktorture.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/kernel/locking/locktorture.c b/kernel/locking/locktorture.c
index ec8cce2..aa60d91 100644
--- a/kernel/locking/locktorture.c
+++ b/kernel/locking/locktorture.c
@@ -24,7 +24,6 @@
#include <linux/module.h>
#include <linux/kthread.h>
#include <linux/spinlock.h>
-#include <linux/rwlock.h>
#include <linux/mutex.h>
#include <linux/rwsem.h>
#include <linux/smp.h>
--
1.9.1
On 02.07.2015 21:25, Steven Rostedt wrote:
> Dear RT Folks,
>
> I'm pleased to announce the 3.18.17-rt14 stable release.
>
>
> This release is just an update to the new stable 3.18.17 version
> and no RT specific changes have been made.
>
>
> You can get this release via the git tree at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/rt/linux-stable-rt.git
>
> branch: v3.18-rt
> Head SHA1: bba903c2bb20dbb6c57a8ba3889f9b8f09dcc6e0
>
>
> Or to build 3.18.17-rt14 directly, the following patches should be applied:
>
> http://www.kernel.org/pub/linux/kernel/v3.x/linux-3.18.tar.xz
>
> http://www.kernel.org/pub/linux/kernel/v3.x/patch-3.18.17.xz
>
> http://www.kernel.org/pub/linux/kernel/projects/rt/3.18/patch-3.18.17-rt14.patch.xz
>
>
>
>
> Enjoy,
>
> -- Steve
>
> --
> 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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] 3.18.17-rt14 locktorture: Do NOT include rwlock.h directly
2015-07-20 9:33 ` [PATCH 1/1] 3.18.17-rt14 locktorture: Do NOT include rwlock.h directly linuxball
@ 2015-07-20 15:47 ` Sebastian Andrzej Siewior
2015-07-21 14:20 ` linuxball
0 siblings, 1 reply; 5+ messages in thread
From: Sebastian Andrzej Siewior @ 2015-07-20 15:47 UTC (permalink / raw)
To: linuxball
Cc: linux-rt-users, Steven Rostedt, Thomas Gleixner, Carsten Emde,
John Kacur
* linuxball | 2015-07-20 11:33:12 [+0200]:
>Including rwlock.h directly will cause kernel builds to fail
>if CONFIG_PREEMPT_RT_FULL is defined. The correct header file
>(rwlock_rt.h OR rwlock.h) will be included by spinlock.h which
>is included by locktorture.c anyway.
Documentation/SubmittingPatches:
11) Sign your work
Sebastian
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] 3.18.17-rt14 locktorture: Do NOT include rwlock.h directly
2015-07-20 15:47 ` Sebastian Andrzej Siewior
@ 2015-07-21 14:20 ` linuxball
2015-07-21 16:45 ` Sebastian Andrzej Siewior
0 siblings, 1 reply; 5+ messages in thread
From: linuxball @ 2015-07-21 14:20 UTC (permalink / raw)
To: linux-rt-users
Cc: Sebastian Andrzej Siewior, Steven Rostedt, Thomas Gleixner,
Carsten Emde, John Kacur
Including rwlock.h directly will cause kernel builds to fail
if CONFIG_PREEMPT_RT_FULL is defined. The correct header file
(rwlock_rt.h OR rwlock.h) will be included by spinlock.h which
is included by locktorture.c anyway.
Signed-off-by: Wolfgang M. Reimer <linuxball@gmail.com>
---
kernel/locking/locktorture.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/kernel/locking/locktorture.c b/kernel/locking/locktorture.c
index ec8cce2..aa60d91 100644
--- a/kernel/locking/locktorture.c
+++ b/kernel/locking/locktorture.c
@@ -24,7 +24,6 @@
#include <linux/module.h>
#include <linux/kthread.h>
#include <linux/spinlock.h>
-#include <linux/rwlock.h>
#include <linux/mutex.h>
#include <linux/rwsem.h>
#include <linux/smp.h>
--
1.9.1
On 20.07.2015 17:47, Sebastian Andrzej Siewior wrote:
> * linuxball | 2015-07-20 11:33:12 [+0200]:
>
>> Including rwlock.h directly will cause kernel builds to fail
>> if CONFIG_PREEMPT_RT_FULL is defined. The correct header file
>> (rwlock_rt.h OR rwlock.h) will be included by spinlock.h which
>> is included by locktorture.c anyway.
> Documentation/SubmittingPatches:
> 11) Sign your work
>
> Sebastian
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] 3.18.17-rt14 locktorture: Do NOT include rwlock.h directly
2015-07-21 14:20 ` linuxball
@ 2015-07-21 16:45 ` Sebastian Andrzej Siewior
0 siblings, 0 replies; 5+ messages in thread
From: Sebastian Andrzej Siewior @ 2015-07-21 16:45 UTC (permalink / raw)
To: linuxball
Cc: linux-rt-users, Steven Rostedt, Thomas Gleixner, Carsten Emde,
John Kacur
* linuxball | 2015-07-21 16:20:07 [+0200]:
>Including rwlock.h directly will cause kernel builds to fail
>if CONFIG_PREEMPT_RT_FULL is defined. The correct header file
>(rwlock_rt.h OR rwlock.h) will be included by spinlock.h which
>is included by locktorture.c anyway.
>
>Signed-off-by: Wolfgang M. Reimer <linuxball@gmail.com>
If you don't mind I set From: to you have here. If you intendent to sent
further patches I suggest that you get rid of "format=flowed" which adds
a white space for no reason to the diff. I won't fix it again.
Sebastian
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-07-21 16:45 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-02 19:25 [ANNOUNCE] 3.18.17-rt14 Steven Rostedt
2015-07-20 9:33 ` [PATCH 1/1] 3.18.17-rt14 locktorture: Do NOT include rwlock.h directly linuxball
2015-07-20 15:47 ` Sebastian Andrzej Siewior
2015-07-21 14:20 ` linuxball
2015-07-21 16:45 ` Sebastian Andrzej Siewior
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).