linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RT 0/3] Linux 3.2.83-rt121-rc1
@ 2016-10-30 16:51 Steven Rostedt
  2016-10-30 16:51 ` [PATCH RT 1/3] genirq: Fix pointer cast warning for randomness on 32-bit architectures Steven Rostedt
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Steven Rostedt @ 2016-10-30 16:51 UTC (permalink / raw)
  To: linux-kernel, linux-rt-users
  Cc: Thomas Gleixner, Carsten Emde, Sebastian Andrzej Siewior,
	John Kacur, Paul Gortmaker


Dear RT Folks,

This is the RT stable review cycle of patch 3.2.83-rt121-rc1.

Please scream at me if I messed something up. Please test the patches too.

The -rc release will be uploaded to kernel.org and will be deleted when
the final release is out. This is just a review release (or release candidate).

The pre-releases will not be pushed to the git repository, only the
final release is.

If all goes well, this patch will be converted to the next main release
on 11/2/2016.

Enjoy,

-- Steve


To build 3.2.83-rt121-rc1 directly, the following patches should be applied:

  http://www.kernel.org/pub/linux/kernel/v3.x/linux-3.2.tar.xz

  http://www.kernel.org/pub/linux/kernel/v3.x/patch-3.2.83.xz

  http://www.kernel.org/pub/linux/kernel/projects/rt/3.2/patch-3.2.83-rt121-rc1.patch.xz

You can also build from 3.2.83-rt120 by applying the incremental patch:

http://www.kernel.org/pub/linux/kernel/projects/rt/3.2/incr/patch-3.2.83-rt120-rt121-rc1.patch.xz


Changes from 3.2.83-rt120:

---


Ben Hutchings (2):
      genirq: Fix pointer cast warning for randomness on 32-bit architectures
      work-simple: Add missing #include <linux/export.h>

Steven Rostedt (Red Hat) (1):
      Linux 3.2.83-rt121-rc1

----
 kernel/irq/manage.c  | 3 ++-
 kernel/work-simple.c | 1 +
 localversion-rt      | 2 +-
 3 files changed, 4 insertions(+), 2 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH RT 1/3] genirq: Fix pointer cast warning for randomness on 32-bit architectures
  2016-10-30 16:51 [PATCH RT 0/3] Linux 3.2.83-rt121-rc1 Steven Rostedt
@ 2016-10-30 16:51 ` Steven Rostedt
  2016-10-30 16:51 ` [PATCH RT 2/3] work-simple: Add missing #include <linux/export.h> Steven Rostedt
  2016-10-30 16:51 ` [PATCH RT 3/3] Linux 3.2.83-rt121-rc1 Steven Rostedt
  2 siblings, 0 replies; 4+ messages in thread
From: Steven Rostedt @ 2016-10-30 16:51 UTC (permalink / raw)
  To: linux-kernel, linux-rt-users
  Cc: Thomas Gleixner, Carsten Emde, Sebastian Andrzej Siewior,
	John Kacur, Paul Gortmaker, Ben Hutchings

[-- Attachment #1: 0001-genirq-Fix-pointer-cast-warning-for-randomness-on-32.patch --]
[-- Type: text/plain, Size: 1049 bytes --]

3.2.83-rt121-rc1 stable review patch.
If anyone has any objections, please let me know.

------------------

From: Ben Hutchings <ben@decadent.org.uk>

gcc warns about casting directly from a 32-bit pointer to u64.  In the
current rt patch series we cast to unsigned long to avoid the warning,
but this fix hasn't been backported to all versions.

Link: http://lkml.kernel.org/r/20160929170041.GW10601@decadent.org.uk

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
---
 kernel/irq/manage.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c
index c4677795d7c8..b1683ba80c88 100644
--- a/kernel/irq/manage.c
+++ b/kernel/irq/manage.c
@@ -897,7 +897,8 @@ static int irq_thread(void *data)
 #ifdef CONFIG_PREEMPT_RT_FULL
 			migrate_disable();
 			add_interrupt_randomness(action->irq, 0,
-						 desc->random_ip ^ (u64) action);
+						 desc->random_ip ^
+						 (unsigned long) action);
 			migrate_enable();
 #endif
 		}
-- 
2.9.3

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH RT 2/3] work-simple: Add missing #include <linux/export.h>
  2016-10-30 16:51 [PATCH RT 0/3] Linux 3.2.83-rt121-rc1 Steven Rostedt
  2016-10-30 16:51 ` [PATCH RT 1/3] genirq: Fix pointer cast warning for randomness on 32-bit architectures Steven Rostedt
@ 2016-10-30 16:51 ` Steven Rostedt
  2016-10-30 16:51 ` [PATCH RT 3/3] Linux 3.2.83-rt121-rc1 Steven Rostedt
  2 siblings, 0 replies; 4+ messages in thread
From: Steven Rostedt @ 2016-10-30 16:51 UTC (permalink / raw)
  To: linux-kernel, linux-rt-users
  Cc: Thomas Gleixner, Carsten Emde, Sebastian Andrzej Siewior,
	John Kacur, Paul Gortmaker, Ben Hutchings

[-- Attachment #1: 0002-work-simple-Add-missing-include-linux-export.h.patch --]
[-- Type: text/plain, Size: 795 bytes --]

3.2.83-rt121-rc1 stable review patch.
If anyone has any objections, please let me know.

------------------

From: Ben Hutchings <ben@decadent.org.uk>

work-simple.c uses EXPORT_SYMBOL_GPL(), defined in <linux/export.h>.

Link: http://lkml.kernel.org/r/20160930090504.GX10601@decadent.org.uk

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
---
 kernel/work-simple.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kernel/work-simple.c b/kernel/work-simple.c
index c996f755dba6..e57a0522573f 100644
--- a/kernel/work-simple.c
+++ b/kernel/work-simple.c
@@ -10,6 +10,7 @@
 #include <linux/kthread.h>
 #include <linux/slab.h>
 #include <linux/spinlock.h>
+#include <linux/export.h>
 
 #define SWORK_EVENT_PENDING     (1 << 0)
 
-- 
2.9.3

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH RT 3/3] Linux 3.2.83-rt121-rc1
  2016-10-30 16:51 [PATCH RT 0/3] Linux 3.2.83-rt121-rc1 Steven Rostedt
  2016-10-30 16:51 ` [PATCH RT 1/3] genirq: Fix pointer cast warning for randomness on 32-bit architectures Steven Rostedt
  2016-10-30 16:51 ` [PATCH RT 2/3] work-simple: Add missing #include <linux/export.h> Steven Rostedt
@ 2016-10-30 16:51 ` Steven Rostedt
  2 siblings, 0 replies; 4+ messages in thread
From: Steven Rostedt @ 2016-10-30 16:51 UTC (permalink / raw)
  To: linux-kernel, linux-rt-users
  Cc: Thomas Gleixner, Carsten Emde, Sebastian Andrzej Siewior,
	John Kacur, Paul Gortmaker

[-- Attachment #1: 0003-Linux-3.2.83-rt121-rc1.patch --]
[-- Type: text/plain, Size: 414 bytes --]

3.2.83-rt121-rc1 stable review patch.
If anyone has any objections, please let me know.

------------------

From: "Steven Rostedt (Red Hat)" <rostedt@goodmis.org>

---
 localversion-rt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/localversion-rt b/localversion-rt
index fff72aad59ab..6096ce5ed673 100644
--- a/localversion-rt
+++ b/localversion-rt
@@ -1 +1 @@
--rt120
+-rt121-rc1
-- 
2.9.3

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-10-30 16:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-30 16:51 [PATCH RT 0/3] Linux 3.2.83-rt121-rc1 Steven Rostedt
2016-10-30 16:51 ` [PATCH RT 1/3] genirq: Fix pointer cast warning for randomness on 32-bit architectures Steven Rostedt
2016-10-30 16:51 ` [PATCH RT 2/3] work-simple: Add missing #include <linux/export.h> Steven Rostedt
2016-10-30 16:51 ` [PATCH RT 3/3] Linux 3.2.83-rt121-rc1 Steven Rostedt

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).