From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vineet Gupta Subject: Re: [RFC] status of execve() work - per-architecture patches solicited Date: Mon, 24 Sep 2012 16:29:14 +0530 Message-ID: <50603D02.50302@synopsys.com> References: <20120917032651.GU13973@ZenIV.linux.org.uk> <1348244799-16013-1-git-send-email-msalter@redhat.com> <20120921183934.GK13973@ZenIV.linux.org.uk> <505D9DFB.8080002@westnet.com.au> <20120923004636.GL13973@ZenIV.linux.org.uk> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit Return-path: Received: from alvesta.synopsys.com ([198.182.60.77]:61319 "EHLO alvesta.synopsys.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754061Ab2IXK73 (ORCPT ); Mon, 24 Sep 2012 06:59:29 -0400 In-Reply-To: <20120923004636.GL13973@ZenIV.linux.org.uk> Sender: linux-arch-owner@vger.kernel.org List-ID: To: Al Viro Cc: Greg Ungerer , Mark Salter , linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org On Sunday 23 September 2012 06:16 AM, Al Viro wrote: > On Sat, Sep 22, 2012 at 09:16:11PM +1000, Greg Ungerer wrote: >> I sent the patch to the m68k-linux list. Its been acked by Geert. >> >> http://marc.info/?l=linux-m68k&m=134742688015639&w=2 >> >> I was going to push it through the m68knommu git tree, but I don't mind >> if you would rather take it with your changes. > > Applied. Other changes since the last update: > * ppc breakage debugged and fixed > * kernel_thread() unified on all converted architectures. commit cc615abcde (mn10300: convert to generic kernel_thread) in the experimental-kernel_thread has a minor syntactical error: diff --git a/arch/mn10300/kernel/process.c b/arch/mn10300/kernel/process.c index 26120a9..8ee09d8 100644 --- a/arch/mn10300/kernel/process.c +++ b/arch/mn10300/kernel/process.c @@ -225,7 +225,7 @@ int copy_thread(unsigned long clone_flags, p->thread.usp = c_usp; if (unlikely(!kregs)) { - memset(c_regs, 0, sizeof(struct pt_regs); + memset(c_regs, 0, sizeof(struct pt_regs)); Thx, -Vineet