From mboxrd@z Thu Jan 1 00:00:00 1970 From: matt@codeblueprint.co.uk (Matt Fleming) Date: Wed, 3 Feb 2016 15:19:27 +0000 Subject: [PATCH 1/3] arm64: efistub: drop __init annotation from handle_kernel_image() In-Reply-To: References: <1453979254-25374-1-git-send-email-ard.biesheuvel@linaro.org> <1453979254-25374-2-git-send-email-ard.biesheuvel@linaro.org> <20160128225809.GF2571@codeblueprint.co.uk> <20160129160006.GD2611@codeblueprint.co.uk> <20160202110821.GB2642@codeblueprint.co.uk> Message-ID: <20160203151927.GJ2597@codeblueprint.co.uk> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Tue, 02 Feb, at 12:09:41PM, Ard Biesheuvel wrote: > On 2 February 2016 at 12:08, Matt Fleming wrote: > > > > What about, > > > > #define __init __compiletime_error("__init not supported in EFI boot stub") > > > > That only works for invocations, i.e., it needs to be used in header > files, and will trigger the error if a call to the function remains > after optimization. We want it at function definition time instead. Good point. OK, how about we just do the #undef, call it good, and I add the task of printing some helpful error message to my growing TODO list?