Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756488AbXH2X34 (ORCPT ); Wed, 29 Aug 2007 19:29:56 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1759654AbXH2X3d (ORCPT ); Wed, 29 Aug 2007 19:29:33 -0400 Received: from mailout.stusta.mhn.de ([141.84.69.5]:37922 "EHLO mailhub.stusta.mhn.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1759522AbXH2X3c (ORCPT ); Wed, 29 Aug 2007 19:29:32 -0400 Date: Thu, 30 Aug 2007 01:29:33 +0200 From: Adrian Bunk To: Jan Dittmer Cc: Michal Piotrowski , Linus Torvalds , Andrew Morton , LKML , Christian Zankel Subject: [2.6.23 patch] xtensa process.c must #include Message-ID: <20070829232933.GZ26410@stusta.de> References: <46D5902C.1040905@googlemail.com> <46D5B544.4030708@l4x.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <46D5B544.4030708@l4x.org> User-Agent: Mutt/1.5.16 (2007-06-11) Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1631 Lines: 54 On Wed, Aug 29, 2007 at 08:04:52PM +0200, Jan Dittmer wrote: > Michal Piotrowski wrote: > > Subject : 2.6.23-rc2 cross compile regressions (alpha,xtensa) > > References : http://lkml.org/lkml/2007/8/6/43 > > Last known good : alpha: 2.6.22-git8 xtensa: 2.6.22-git6 > > Submitter : Jan Dittmer > > Caused-By : ? > > Handled-By : xtensa: Christian Zankel > > Status : unknown > > Status: Unfixed >... > xtensa: http://l4x.org/k/?d=33728 > CC arch/xtensa/kernel/process.o > arch/xtensa/kernel/process.c:50: error: `INR_OPEN' undeclared here (not in a function) > arch/xtensa/kernel/process.c:50: error: initializer element is not constant > arch/xtensa/kernel/process.c:50: error: (near initialization for `init_signals.rlim[7].rlim_cur') >... Patch below. > Jan cu Adrian <-- snip --> Another fallout from the removal of #include from mm.h Signed-off-by: Adrian Bunk --- 6a0031b0f3f40238fc604bba264981776a155dbf diff --git a/arch/xtensa/kernel/process.c b/arch/xtensa/kernel/process.c index ce758ba..dd498f1 100644 --- a/arch/xtensa/kernel/process.c +++ b/arch/xtensa/kernel/process.c @@ -30,6 +30,7 @@ #include #include #include +#include #include #include - 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/