lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <152261548549.30503.17477120572899326312.stgit@warthog.procyon.org.uk> Date: Sun, 01 Apr 2018 21:44:45 +0100 From: David Howells <dhowells@...hat.com> To: linux-kernel@...r.kernel.org Subject: [PATCH 45/45] C++: Move initcall_level_names[] to __initdata section Move initcall_level_names[] to __initdata section for the moment as g++ doesn't want to put it in __initconst: init/main.c:876:20: error: 'initcall_level_names' causes a section type conflict with '__setup_str_set_debug_rodata' Signed-off-by: David Howells <dhowells@...hat.com> --- init/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/main.c b/init/main.c index 642e917387db..6d404fc07007 100644 --- a/init/main.c +++ b/init/main.c @@ -873,7 +873,7 @@ static initcall_t *initcall_levels[] __initdata = { }; /* Keep these in sync with initcalls in include/linux/init.h */ -static const char *initcall_level_names[] __initconst = { +static const char *initcall_level_names[] __initdata = { "early", "core", "postcore",
Powered by blists - more mailing lists