The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [ANNOUNCE] 3.6.2-rt4
@ 2012-10-20 19:40 Thomas Gleixner
       [not found] ` <op.wmk8f6m96426ze@localhost.localdomain>
  2012-10-22 21:54 ` Paul Gortmaker
  0 siblings, 2 replies; 3+ messages in thread
From: Thomas Gleixner @ 2012-10-20 19:40 UTC (permalink / raw)
  To: LKML; +Cc: linux-rt-users

Dear RT Folks,

I'm pleased to announce the 3.6.2-rt4 release. rt4 is just an update
to 3.6.2. The not announced 3.6.1-rt3 is an intermediate release with
a single change.

Changes since 3.6.1-rt2:

	* Remove the softirq noise printk

The delta patch against 3.6.1-rt2 is appended below and can be found here

  http://www.kernel.org/pub/linux/kernel/projects/rt/3.6/incr/patch-3.6.1-rt2-rt3.patch.xz

The RT patch against 3.6.2 can be found here:

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

The split quilt queue is available at:

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

Enjoy,

	tglx

---------->

Index: linux-stable/kernel/softirq.c
===================================================================
--- linux-stable.orig/kernel/softirq.c
+++ linux-stable/kernel/softirq.c
@@ -468,8 +468,6 @@ static void do_single_softirq(int which,
  */
 static void do_current_softirqs(int need_rcu_bh_qs)
 {
-	int retry = 0;
-
 	while (current->softirqs_raised) {
 		int i = __ffs(current->softirqs_raised);
 		unsigned int pending, mask = (1U << i);
@@ -496,10 +494,6 @@ static void do_current_softirqs(int need
 		}
 		unlock_softirq(i);
 		WARN_ON(current->softirq_nestcnt != 1);
-		if (++retry == 20) {
-			printk(KERN_ERR "Crap, %s looping forever in softirq\n",
-			       current->comm);
-		}
 	}
 }
 
Index: linux-stable/localversion-rt
===================================================================
--- linux-stable.orig/localversion-rt
+++ linux-stable/localversion-rt
@@ -1 +1 @@
--rt2
+-rt3

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

* Fwd: Re: [ANNOUNCE] 3.6.2-rt4
       [not found] ` <op.wmk8f6m96426ze@localhost.localdomain>
@ 2012-10-22 16:08   ` Uwaysi Bin Kareem
  0 siblings, 0 replies; 3+ messages in thread
From: Uwaysi Bin Kareem @ 2012-10-22 16:08 UTC (permalink / raw)
  To: linux-kernel@vger.kernel.org



------- Forwarded message -------
From: "Uwaysi Bin Kareem" <uwaysi.bin.kareem@paradoxuncreated.com>
To: "Thomas Gleixner" <tglx@linutronix.de>
Cc:
Subject: Re: [ANNOUNCE] 3.6.2-rt4
Date: Mon, 22 Oct 2012 18:08:20 +0200

I tried it. Just low-latency desktop, seems slighty of less jitter, than
mainline.
Unfortunately the problem of threadedirqs continue, they never worked on
my machine.
I saw someone discuss a possibility to run basic realtime without threaded
irqs, but the full patch required it.
Could you or anyone detail it? If you want any info, just say what.

Peace Be With You.

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

* Re: [ANNOUNCE] 3.6.2-rt4
  2012-10-20 19:40 [ANNOUNCE] 3.6.2-rt4 Thomas Gleixner
       [not found] ` <op.wmk8f6m96426ze@localhost.localdomain>
@ 2012-10-22 21:54 ` Paul Gortmaker
  1 sibling, 0 replies; 3+ messages in thread
From: Paul Gortmaker @ 2012-10-22 21:54 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: LKML, linux-rt-users

On Sat, Oct 20, 2012 at 3:40 PM, Thomas Gleixner <tglx@linutronix.de> wrote:
> Dear RT Folks,
>
> I'm pleased to announce the 3.6.2-rt4 release. rt4 is just an update
> to 3.6.2. The not announced 3.6.1-rt3 is an intermediate release with
> a single change.

I've updated the repo of patches to have rt3 and rt4 on master branch.

In my fixes branch (now v3.6.2-rt4-fixes) there is only the cosmetic fix
of adding a subject to the power-use-generic-rwsem-on-rt.patch,
everything else is in the main tarballs.

There is a gregkh v3.6.3 release - the series applies onto that with
only a trivial patch refresh required to kgb-serial-hackaround.patch

In fact, quilt may not even bother to warn about it, but git-am will
stop and ask you to double check things.  If git-am still fails when
we get to v3.6.3-rt5, then I'll refresh it on the -fixes branch.

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

Paul.
--

>
> Changes since 3.6.1-rt2:
>
>         * Remove the softirq noise printk
>
> The delta patch against 3.6.1-rt2 is appended below and can be found here
>
>   http://www.kernel.org/pub/linux/kernel/projects/rt/3.6/incr/patch-3.6.1-rt2-rt3.patch.xz
>
> The RT patch against 3.6.2 can be found here:
>
>   http://www.kernel.org/pub/linux/kernel/projects/rt/3.6/patch-3.6.2-rt4.patch.xz
>
> The split quilt queue is available at:
>
>   http://www.kernel.org/pub/linux/kernel/projects/rt/3.6/patches-3.6.2-rt4.tar.xz
>
> Enjoy,
>
>         tglx
>
> ---------->
>
> Index: linux-stable/kernel/softirq.c
> ===================================================================
> --- linux-stable.orig/kernel/softirq.c
> +++ linux-stable/kernel/softirq.c
> @@ -468,8 +468,6 @@ static void do_single_softirq(int which,
>   */
>  static void do_current_softirqs(int need_rcu_bh_qs)
>  {
> -       int retry = 0;
> -
>         while (current->softirqs_raised) {
>                 int i = __ffs(current->softirqs_raised);
>                 unsigned int pending, mask = (1U << i);
> @@ -496,10 +494,6 @@ static void do_current_softirqs(int need
>                 }
>                 unlock_softirq(i);
>                 WARN_ON(current->softirq_nestcnt != 1);
> -               if (++retry == 20) {
> -                       printk(KERN_ERR "Crap, %s looping forever in softirq\n",
> -                              current->comm);
> -               }
>         }
>  }
>
> Index: linux-stable/localversion-rt
> ===================================================================
> --- linux-stable.orig/localversion-rt
> +++ linux-stable/localversion-rt
> @@ -1 +1 @@
> --rt2
> +-rt3
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

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

end of thread, other threads:[~2012-10-22 21:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-20 19:40 [ANNOUNCE] 3.6.2-rt4 Thomas Gleixner
     [not found] ` <op.wmk8f6m96426ze@localhost.localdomain>
2012-10-22 16:08   ` Fwd: " Uwaysi Bin Kareem
2012-10-22 21:54 ` Paul Gortmaker

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox