From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Long Subject: Re: [PATCH v3 0/2] Consolidate redundant register/stack access code Date: Tue, 9 Feb 2016 15:53:39 -0500 Message-ID: <56BA51D3.9030204@linaro.org> References: <1454996337-7935-1-git-send-email-dave.long@linaro.org> <1455010600.13384.3.camel@ellerman.id.au> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=subject:to:references:cc:from:message-id:date:user-agent :mime-version:in-reply-to:content-type:content-transfer-encoding; bh=kuNaogyjXMnt78vSpFvE1NVO36JjKqeHNNpoBFc86Hg=; b=QSWeLx52Er47Eej76lJwYe53aoMhM0L8K81kSEK1iLc/389kEivZlhGS0j1rjoM+ol DWwyVugQf1AstXjhExYkDKUQFT3f5hnNkNx91BLvc1A4ZT88Tifjgr1PqyYuc8eOAcOE n3zNAyu1RVJvX4HoqFL+++y6BMgIE+Kafz44Q= In-Reply-To: <1455010600.13384.3.camel@ellerman.id.au> Sender: linux-sh-owner@vger.kernel.org List-ID: Content-Type: text/plain; charset="us-ascii"; format="flowed" To: Michael Ellerman , Andrew Morton Cc: "H. Peter Anvin" , "chengang@emindsoft.com.cn" , Andy Lutomirski , Benjamin Herrenschmidt , Borislav Petkov , Brian Gerst , David Hildenbrand , Denys Vlasenko , Heiko Carstens , Hendrik Brueckner , Ingo Molnar , Jan Beulich , Kees Cook , Martin Schwidefsky , Oleg Nesterov , Paul Mackerras , Rashmica Gupta , Rich Felker , Richard Kuo , Roland McGrath , Russell King , Thomas Gleixner , Will Deacon On 02/09/2016 04:36 AM, Michael Ellerman wrote: > On Tue, 2016-02-09 at 00:38 -0500, David Long wrote: > >> From: "David A. Long" >> >> Move duplicate and functionally equivalent code for accessing registers >> and stack (CONFIG_HAVE_REGS_AND_STACK_ACCESS_API) from arch subdirs into >> common kernel files. >> >> I'm sending this out again (with updated distribution list) because v2 >> just never got pulled in, even though I don't think there were any >> outstanding issues. > > A big cross arch patch like this would often get taken by Andrew Morton, but > AFAICS you didn't CC him - so I just added him, perhaps he'll pick it up for > us :D > > cheers > Thanks much. -dl From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Long Date: Tue, 09 Feb 2016 20:53:39 +0000 Subject: Re: [PATCH v3 0/2] Consolidate redundant register/stack access code Message-Id: <56BA51D3.9030204@linaro.org> List-Id: References: <1454996337-7935-1-git-send-email-dave.long@linaro.org> <1455010600.13384.3.camel@ellerman.id.au> In-Reply-To: <1455010600.13384.3.camel@ellerman.id.au> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-arm-kernel@lists.infradead.org On 02/09/2016 04:36 AM, Michael Ellerman wrote: > On Tue, 2016-02-09 at 00:38 -0500, David Long wrote: > >> From: "David A. Long" >> >> Move duplicate and functionally equivalent code for accessing registers >> and stack (CONFIG_HAVE_REGS_AND_STACK_ACCESS_API) from arch subdirs into >> common kernel files. >> >> I'm sending this out again (with updated distribution list) because v2 >> just never got pulled in, even though I don't think there were any >> outstanding issues. > > A big cross arch patch like this would often get taken by Andrew Morton, but > AFAICS you didn't CC him - so I just added him, perhaps he'll pick it up for > us :D > > cheers > Thanks much. -dl From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qg0-x230.google.com (mail-qg0-x230.google.com [IPv6:2607:f8b0:400d:c04::230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 3F0351A038E for ; Wed, 10 Feb 2016 07:53:44 +1100 (AEDT) Received: by mail-qg0-x230.google.com with SMTP id y89so75874345qge.2 for ; Tue, 09 Feb 2016 12:53:44 -0800 (PST) Subject: Re: [PATCH v3 0/2] Consolidate redundant register/stack access code To: Michael Ellerman , Andrew Morton References: <1454996337-7935-1-git-send-email-dave.long@linaro.org> <1455010600.13384.3.camel@ellerman.id.au> Cc: "H. Peter Anvin" , "chengang@emindsoft.com.cn" , Andy Lutomirski , Benjamin Herrenschmidt , Borislav Petkov , Brian Gerst , David Hildenbrand , Denys Vlasenko , Heiko Carstens , Hendrik Brueckner , Ingo Molnar , Jan Beulich , Kees Cook , Martin Schwidefsky , Oleg Nesterov , Paul Mackerras , Rashmica Gupta , Rich Felker , Richard Kuo , Roland McGrath , Russell King , Thomas Gleixner , Will Deacon , Yoshinori Sato , linux-arm-kernel@lists.infradead.org, linux-hexagon@vger.kernel.org, linux-kernel@vger.kernel.org, linux-s390@vger.kernel.org, linux-sh@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, x86@kernel.org From: David Long Message-ID: <56BA51D3.9030204@linaro.org> Date: Tue, 9 Feb 2016 15:53:39 -0500 MIME-Version: 1.0 In-Reply-To: <1455010600.13384.3.camel@ellerman.id.au> Content-Type: text/plain; charset=utf-8; format=flowed List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On 02/09/2016 04:36 AM, Michael Ellerman wrote: > On Tue, 2016-02-09 at 00:38 -0500, David Long wrote: > >> From: "David A. Long" >> >> Move duplicate and functionally equivalent code for accessing registers >> and stack (CONFIG_HAVE_REGS_AND_STACK_ACCESS_API) from arch subdirs into >> common kernel files. >> >> I'm sending this out again (with updated distribution list) because v2 >> just never got pulled in, even though I don't think there were any >> outstanding issues. > > A big cross arch patch like this would often get taken by Andrew Morton, but > AFAICS you didn't CC him - so I just added him, perhaps he'll pick it up for > us :D > > cheers > Thanks much. -dl From mboxrd@z Thu Jan 1 00:00:00 1970 From: dave.long@linaro.org (David Long) Date: Tue, 9 Feb 2016 15:53:39 -0500 Subject: [PATCH v3 0/2] Consolidate redundant register/stack access code In-Reply-To: <1455010600.13384.3.camel@ellerman.id.au> References: <1454996337-7935-1-git-send-email-dave.long@linaro.org> <1455010600.13384.3.camel@ellerman.id.au> Message-ID: <56BA51D3.9030204@linaro.org> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On 02/09/2016 04:36 AM, Michael Ellerman wrote: > On Tue, 2016-02-09 at 00:38 -0500, David Long wrote: > >> From: "David A. Long" >> >> Move duplicate and functionally equivalent code for accessing registers >> and stack (CONFIG_HAVE_REGS_AND_STACK_ACCESS_API) from arch subdirs into >> common kernel files. >> >> I'm sending this out again (with updated distribution list) because v2 >> just never got pulled in, even though I don't think there were any >> outstanding issues. > > A big cross arch patch like this would often get taken by Andrew Morton, but > AFAICS you didn't CC him - so I just added him, perhaps he'll pick it up for > us :D > > cheers > Thanks much. -dl