Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752241Ab3FHOaN (ORCPT ); Sat, 8 Jun 2013 10:30:13 -0400 Received: from mail.active-venture.com ([67.228.131.205]:63271 "EHLO mail.active-venture.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751680Ab3FHOaL (ORCPT ); Sat, 8 Jun 2013 10:30:11 -0400 X-Originating-IP: 108.223.40.66 Date: Sat, 8 Jun 2013 07:30:55 -0700 From: Guenter Roeck To: Greg KH Cc: linux-kernel@vger.kernel.org, Andrew Morton , torvalds@linux-foundation.org, stable@vger.kernel.org, lwn@lwn.net, Jiri Slaby , Paul Mackerras , linuxppc-dev@lists.ozlabs.org, Michael Neuling , Benjamin Herrenschmidt Subject: Re: Linux 3.9.5 [patch to fix powerpc build error attached] Message-ID: <20130608143055.GA21207@roeck-us.net> References: <20130607195816.GA28479@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20130607195816.GA28479@kroah.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1728 Lines: 48 On Fri, Jun 07, 2013 at 12:58:16PM -0700, Greg KH wrote: > I'm announcing the release of the 3.9.5 kernel. > > All users of the 3.9 kernel series must upgrade. > > The updated 3.9.y git tree can be found at: > git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-3.9.y > and can be browsed at the normal kernel.org git web browser: > http://git.kernel.org/?p=linux/kernel/git/stable/linux-stable.git;a=summary > Powerpc build is fixed with the following patch. >From 8ce3edac0a86f103bd1037110662d5d80a42dd5b Mon Sep 17 00:00:00 2001 From: Guenter Roeck Date: Sat, 8 Jun 2013 07:23:47 -0700 Subject: [PATCH] powerpc: Fix build error in stable/3.9 Commit e71c42189 (powerpc/tm: Abort on emulation and alignment faults) introduced a powerpc build error in 3.9.5. Signed-off-by: Guenter Roeck --- No upstream commit. Compile tested only. arch/powerpc/kernel/traps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/powerpc/kernel/traps.c b/arch/powerpc/kernel/traps.c index 1c22b2d..29857c6 100644 --- a/arch/powerpc/kernel/traps.c +++ b/arch/powerpc/kernel/traps.c @@ -1151,7 +1151,7 @@ void alignment_exception(struct pt_regs *regs) local_irq_enable(); if (tm_abort_check(regs, TM_CAUSE_ALIGNMENT | TM_CAUSE_PERSISTENT)) - goto bail; + return; /* we don't implement logging of alignment exceptions */ if (!(current->thread.align_ctl & PR_UNALIGN_SIGBUS)) -- 1.7.9.7 -- 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/