From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756905Ab2D3Uiz (ORCPT ); Mon, 30 Apr 2012 16:38:55 -0400 Received: from www.linutronix.de ([62.245.132.108]:35968 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756716Ab2D3Uix (ORCPT ); Mon, 30 Apr 2012 16:38:53 -0400 Date: Mon, 30 Apr 2012 22:38:50 +0200 (CEST) From: Thomas Gleixner To: KOSAKI Motohiro cc: LKML , linux-arch@vger.kernel.org, Chen Liqin Subject: Re: [patch 21/29] score: Use generic init_task In-Reply-To: <4F9EF43C.3090608@gmail.com> Message-ID: References: <20120430194725.763322463@linutronix.de> <20120430194846.862605948@linutronix.de> <4F9EF43C.3090608@gmail.com> User-Agent: Alpine 2.02 (LFD 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Linutronix-Spam-Score: -1.0 X-Linutronix-Spam-Level: - X-Linutronix-Spam-Status: No , -1.0 points, 5.0 required, ALL_TRUSTED=-1,SHORTCIRCUIT=-0.0001 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 30 Apr 2012, KOSAKI Motohiro wrote: > (4/30/12 4:16 PM), Thomas Gleixner wrote: > > Same code. Use the generic version. > > > > Signed-off-by: Thomas Gleixner > > Cc: Chen Liqin > > --- > > arch/score/Kconfig | 1 + > > arch/score/kernel/Makefile | 2 +- > > 2 files changed, 2 insertions(+), 1 deletion(-) > > > > Index: tip/arch/score/Kconfig > > =================================================================== > > --- tip.orig/arch/score/Kconfig > > +++ tip/arch/score/Kconfig > > @@ -9,6 +9,7 @@ config SCORE > > select HAVE_MEMBLOCK_NODE_MAP > > select ARCH_DISCARD_MEMBLOCK > > select GENERIC_CPU_DEVICES > > + select HAVE_GENERIC_INIT_TASK > > > > choice > > prompt "System type" > > Index: tip/arch/score/kernel/Makefile > > =================================================================== > > --- tip.orig/arch/score/kernel/Makefile > > +++ tip/arch/score/kernel/Makefile > > @@ -4,7 +4,7 @@ > > > > extra-y := head.o vmlinux.lds > > > > -obj-y += entry.o init_task.o irq.o process.o ptrace.o \ > > +obj-y += entry.o irq.o process.o ptrace.o \ > > setup.o signal.o sys_score.o time.o traps.o \ > > sys_call_table.o > > Almost patches delete arch specific init-task. But this patch doesn't. > Is this really intentional? Not really. I missed it :( Will fix. Thanks, tglx