Re: [ANNOUNCE] 3.6.3-rt6

2012-10-23 Thread Paul Gortmaker
On Tue, Oct 23, 2012 at 5:06 PM, Thomas Gleixner  wrote:
> Dear RT Folks,
>
> I'm pleased to announce the 3.6.3-rt6 release. rt6 is just an update
> to 3.6.3. The not announced 3.6.2-rt5 is an intermediate release with
> a single change.
>
> Changes since 3.6.2-rt4:
>
> * Make the early printk changes work (hopefully) everywhere
>
> The new patch queue also contains a non code change (according to
> Pauls) which adds a missing subject line to a powerpc patch.

The rt5 and rt6 changes are now present in the 3.6-rt-patches repo.
Given the above, there is currently nothing for me to queue on a
separate  "-fixes" branch against rt6.  The master branch works as-is.

http://git.kernel.org/?p=linux/kernel/git/paulg/3.6-rt-patches.git;a=summary

Paul.
--

>
> The delta patch against 3.6.2-rt4 is appended below and can be found
> here:
>
>   
> http://www.kernel.org/pub/linux/kernel/projects/rt/3.6/incr/patch-3.6.2-rt4-rt5.patch.xz
>
> The RT patch against 3.6.3 can be found here:
>
>   
> http://www.kernel.org/pub/linux/kernel/projects/rt/3.6/patch-3.6.3-rt6.patch.xz
>
> The split quilt queue is available at:
>
>   
> http://www.kernel.org/pub/linux/kernel/projects/rt/3.6/patches-3.6.3-rt6.tar.xz
>
> Enjoy,
>
> tglx
>
> -->
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[ANNOUNCE] 3.6.3-rt6

2012-10-23 Thread Thomas Gleixner
Dear RT Folks,

I'm pleased to announce the 3.6.3-rt6 release. rt6 is just an update
to 3.6.3. The not announced 3.6.2-rt5 is an intermediate release with
a single change.

Changes since 3.6.2-rt4:

* Make the early printk changes work (hopefully) everywhere

The new patch queue also contains a non code change (according to
Pauls) which adds a missing subject line to a powerpc patch.

The delta patch against 3.6.2-rt4 is appended below and can be found
here:

  
http://www.kernel.org/pub/linux/kernel/projects/rt/3.6/incr/patch-3.6.2-rt4-rt5.patch.xz

The RT patch against 3.6.3 can be found here:

  
http://www.kernel.org/pub/linux/kernel/projects/rt/3.6/patch-3.6.3-rt6.patch.xz

The split quilt queue is available at:

  
http://www.kernel.org/pub/linux/kernel/projects/rt/3.6/patches-3.6.3-rt6.tar.xz

Enjoy,

tglx

-->
Index: linux-stable/arch/mips/kernel/early_printk.c
===
--- linux-stable.orig/arch/mips/kernel/early_printk.c
+++ linux-stable/arch/mips/kernel/early_printk.c
@@ -8,6 +8,7 @@
  *   written by Ralf Baechle (r...@linux-mips.org)
  */
 #include 
+#include 
 #include 
 
 #include 
Index: linux-stable/arch/tile/kernel/early_printk.c
===
--- linux-stable.orig/arch/tile/kernel/early_printk.c
+++ linux-stable/arch/tile/kernel/early_printk.c
@@ -17,6 +17,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 
Index: linux-stable/include/linux/printk.h
===
--- linux-stable.orig/include/linux/printk.h
+++ linux-stable/include/linux/printk.h
@@ -98,6 +98,7 @@ int no_printk(const char *fmt, ...)
 #ifdef CONFIG_EARLY_PRINTK
 extern asmlinkage __printf(1, 2)
 void early_printk(const char *fmt, ...);
+void early_vprintk(const char *fmt, va_list ap);
 extern void printk_kill(void);
 #else
 static inline __printf(1, 2) __cold
Index: linux-stable/kernel/printk.c
===
--- linux-stable.orig/kernel/printk.c
+++ linux-stable/kernel/printk.c
@@ -1228,7 +1228,7 @@ SYSCALL_DEFINE3(syslog, int, type, char 
 #ifdef CONFIG_EARLY_PRINTK
 struct console *early_console;
 
-static void early_vprintk(const char *fmt, va_list ap)
+void early_vprintk(const char *fmt, va_list ap)
 {
if (early_console) {
char buf[512];
Index: linux-stable/localversion-rt
===
--- linux-stable.orig/localversion-rt
+++ linux-stable/localversion-rt
@@ -1 +1 @@
--rt4
+-rt5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/