From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752901AbYIJGHX (ORCPT ); Wed, 10 Sep 2008 02:07:23 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751288AbYIJGHJ (ORCPT ); Wed, 10 Sep 2008 02:07:09 -0400 Received: from e28smtp07.in.ibm.com ([59.145.155.7]:54881 "EHLO e28esmtp07.in.ibm.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1750859AbYIJGHH (ORCPT ); Wed, 10 Sep 2008 02:07:07 -0400 Date: Wed, 10 Sep 2008 11:36:24 +0530 From: Ankita Garg To: Steven Rostedt Cc: LKML , RT , Ingo Molnar , Thomas Gleixner Subject: Re: 2.6.24.7-rt18 Message-ID: <20080910060624.GA7484@in.ibm.com> Reply-To: Ankita Garg Mail-Followup-To: Ankita Garg , Steven Rostedt , LKML , RT , Ingo Molnar , Thomas Gleixner References: <1221018283.22713.20.camel@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1221018283.22713.20.camel@localhost.localdomain> User-Agent: Mutt/1.5.15+20070412 (2007-04-11) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Steven, On Tue, Sep 09, 2008 at 11:44:42PM -0400, Steven Rostedt wrote: > We are pleased to announce the 2.6.24.7-rt18 tree, which can be > downloaded from the location: > > http://rt.et.redhat.com/download/ > > Information on the RT patch can be found at: > > http://rt.wiki.kernel.org/index.php/Main_Page > > Changes since 2.6.24.7-rt17 > > - seqlock serialize writes (Gregory Haskins) > > - Fix above patch that broke non PREEMPT_RT (Steven Rostedt) > > - Add sysctl to warn on RT task using non PI futex (Steven Rostedt) > A trivial patch to remove the hard coded value of MAX_RT_PRIO in the above patch. Signed-off-by: Ankita Garg Index: linux-2.6.26.5/kernel/futex.c =================================================================== --- linux-2.6.26.5.orig/kernel/futex.c 2008-09-09 22:58:19.000000000 -0700 +++ linux-2.6.26.5/kernel/futex.c 2008-09-09 22:58:38.000000000 -0700 @@ -1241,7 +1241,7 @@ "RT task %s:%d with priority %d" " using non PI futex\n", current->comm, current->pid, - 100 - current->prio); + MAX_RT_PRIO - current->prio); } } -- Regards, Ankita Garg (ankita@in.ibm.com) Linux Technology Center IBM India Systems & Technology Labs, Bangalore, India