From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S943926AbcJSPDT (ORCPT ); Wed, 19 Oct 2016 11:03:19 -0400 Received: from mout.kundenserver.de ([212.227.126.187]:51996 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S943234AbcJSPDQ (ORCPT ); Wed, 19 Oct 2016 11:03:16 -0400 From: Arnd Bergmann To: Michal Marek , Russell King Cc: Nicholas Piggin , Adam Borowski , Omar Sandoval , Linus Torvalds , adobriyan@gmail.com, sfr@canb.auug.org.au, viro@zeniv.linux.org.uk, linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org Subject: Re: [PATCH] kbuild: provide include/asm/asm-prototypes.h for ARM Date: Wed, 19 Oct 2016 17:02:55 +0200 Message-ID: <3114442.xCAy34UQCk@wuerfel> User-Agent: KMail/5.1.3 (Linux/4.4.0-34-generic; KDE/5.18.0; x86_64; ; ) In-Reply-To: References: <20161017065131.GA27863@angband.pl> <6556201.qTG4Pa4aHk@wuerfel> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Provags-ID: V03:K0:I65pFZdfVE7XM/8v5qjlxp5J6F4SwGrE5HPmU3Z4JDb2k6NyT5Q TQ8fwmpFCPIAlWJ8zJcXiWn8v1yWjgh9DGIgOZdeKEZwJoaRge+LS1LDtHP7yFdcczAZpFI cHirxoNZWbzK3yKKe9wVXEYDS9C4TSj5JLQGHtQ9MYgjPn1dymyDLYI50o5ICv9rcnmxi8B frN0eaix6JQm61FA3oItA== X-UI-Out-Filterresults: notjunk:1;V01:K0:EflHefOYkZE=:JfPS58Xx9/08XQ4K7Ngsbh 7HBZ2pHUOgwMYEP/j4hrKUAWx7jI93LI+ly7IBGH7DBssVYqZD1KQKJBo4hvFmhWvVTpnzbxs aOvi1+wzNuNvULbXJ29eF1z/ZA92BCZte5ZDSYojUejOctumpJtQo1KNt3KCJqjh1CZTXcnd7 IFcwUHFBNb4eT23Bu/gLs/297bMu0heYGJdz4zuSyKDsOQHf0478MS31SPVvAeTki/7PObSk8 HRHY6+ygjzfeRPyLnlInHOuhXbblYrM/8ZYXvLEyhVHkrUQVmmt12BqIC1RRNhDybbEGQeOG8 FF2HWgfQxSCXpQxT3/PNWFrYFxvJIII95zBYm/fP0eyEJeVWm2J5+gJZ6XZtRZKLfOrZxoaaX Pa+Xrn2Aer8cNtI6bfzDDDnPcBkdTZBZ/4aw4qBHA6P5jhqw0NUuGZzxT6l0KuvzgikH42uY7 IuOZggPVzRIjkxhurFeIvZ7QBEpu0sy+7oaxyDq3g+uoDUpou4lapB3+jFbE+92MNy9Hzxj0y wE/W6eirmm4w0L0rCkr7UQK61BfcgH8LSFRYIggVeVTYf3p6vvnk7kPHqFr0N8wj+Zc98zYDk BuICdkORv7WZI/B7z543a2XpTcx7AUDnKrVWdLq3TzMkpE2EpqglXoOm6qfJkd4u6/vOdRLoy B8UDAuD6qAyzszfLBFCl+77eOY6xw3zndc4Urd1jHAS7sMhSuepWS/+1HiRQwJ0aCN5TNZpLo VDJMYzPamV2T8axN Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wednesday, October 19, 2016 4:52:06 PM CEST Michal Marek wrote: > Dne 17.10.2016 v 14:26 Arnd Bergmann napsal(a): > > This adds an asm/asm-prototypes.h header for ARM to fix the > > broken symbol versioning for symbols exported from assembler > > files. > > > > In addition to the header, we have to do these other small > > changes: > > > > - move the 'extern' declarations out of memset_io/memcpy_io > > to make them visible to the symbol version generator > > - move the exports from bitops.h to {change,clear,set,...}bit.S > > - move the exports from csumpartialgeneric.S into the files > > including it > > > > I couldn't find the correct prototypes for the compiler builtins, > > so I went with the fake 'void f(void)' prototypes that we had > > before. > > > > Signed-off-by: Arnd Bergmann > > Hi Arnd, > > just to make sure I'm looking at the right code - is this based on the > patch by Nick here: https://patchwork.kernel.org/patch/9377783/? > (adding Russell to Cc, I missed him during my earlier mail, which is now archived at https://lkml.org/lkml/2016/10/17/356) Correct. I had imported Nick's patch into my randconfig tree and this is what I needed to build all configurations cleanly with it. Arnd