Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758193AbYGPOax (ORCPT ); Wed, 16 Jul 2008 10:30:53 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753141AbYGPOap (ORCPT ); Wed, 16 Jul 2008 10:30:45 -0400 Received: from smtp4.pp.htv.fi ([213.243.153.38]:39582 "EHLO smtp4.pp.htv.fi" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750971AbYGPOao (ORCPT ); Wed, 16 Jul 2008 10:30:44 -0400 Date: Wed, 16 Jul 2008 17:30:33 +0300 From: Adrian Bunk To: Heiko Carstens , Stephen Rothwell Cc: Ingo Molnar , linux-next@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH linux-next] Add module.h include to stacktrace.c. Message-ID: <20080716143033.GD25557@cs181140183.pp.htv.fi> References: <20080711103925.GA20589@osiris.boeblingen.de.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20080711103925.GA20589@osiris.boeblingen.de.ibm.com> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3955 Lines: 110 Why was this patch ignored? The build failures now made it into Linus' tree. Stephen already fixed the powerpc one. s390 is still broken. And I just ran into this compile error on sh... cu Adrian On Fri, Jul 11, 2008 at 12:39:25PM +0200, Heiko Carstens wrote: > From: Heiko Carstens > > Fixes this: > > CC arch/s390/kernel/stacktrace.o > arch/s390/kernel/stacktrace.c:84: warning: data definition has no type or storage class > arch/s390/kernel/stacktrace.c:84: warning: type defaults to 'int' in declaration of 'EXPORT_SYMBOL_GPL' > arch/s390/kernel/stacktrace.c:84: warning: parameter names (without types) in function declaration > arch/s390/kernel/stacktrace.c:97: warning: data definition has no type or storage class > arch/s390/kernel/stacktrace.c:97: warning: type defaults to 'int' in declaration of 'EXPORT_SYMBOL_GPL' > arch/s390/kernel/stacktrace.c:97: warning: parameter names (without types) in function declaration > > caused by "stacktrace: export save_stack_trace[_tsk]" > > Signed-off-by: Heiko Carstens > --- > > Ingo, the patch which causes this came in via one of your trees. > Please merge/apply. Thanks. > > arch/avr32/kernel/stacktrace.c | 1 + > arch/mips/kernel/stacktrace.c | 1 + > arch/powerpc/kernel/stacktrace.c | 1 + > arch/s390/kernel/stacktrace.c | 1 + > arch/sh/kernel/stacktrace.c | 1 + > 5 files changed, 5 insertions(+) > > Index: linux-next/arch/s390/kernel/stacktrace.c > =================================================================== > --- linux-next.orig/arch/s390/kernel/stacktrace.c > +++ linux-next/arch/s390/kernel/stacktrace.c > @@ -10,6 +10,7 @@ > #include > #include > #include > +#include > > static unsigned long save_context_stack(struct stack_trace *trace, > unsigned long sp, > Index: linux-next/arch/avr32/kernel/stacktrace.c > =================================================================== > --- linux-next.orig/arch/avr32/kernel/stacktrace.c > +++ linux-next/arch/avr32/kernel/stacktrace.c > @@ -10,6 +10,7 @@ > #include > #include > #include > +#include > > register unsigned long current_frame_pointer asm("r7"); > > Index: linux-next/arch/mips/kernel/stacktrace.c > =================================================================== > --- linux-next.orig/arch/mips/kernel/stacktrace.c > +++ linux-next/arch/mips/kernel/stacktrace.c > @@ -7,6 +7,7 @@ > */ > #include > #include > +#include #include > > /* > Index: linux-next/arch/powerpc/kernel/stacktrace.c > =================================================================== > --- linux-next.orig/arch/powerpc/kernel/stacktrace.c > +++ linux-next/arch/powerpc/kernel/stacktrace.c > @@ -12,6 +12,7 @@ > > #include > #include > +#include > #include > > /* > Index: linux-next/arch/sh/kernel/stacktrace.c > =================================================================== > --- linux-next.orig/arch/sh/kernel/stacktrace.c > +++ linux-next/arch/sh/kernel/stacktrace.c > @@ -12,6 +12,7 @@ > #include > #include > #include > +#include > #include > > /* > -- > To unsubscribe from this list: send the line "unsubscribe linux-next" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html -- 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/