]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
lib/decompress.c add __init to decompress_method and data
authorHein Tibosch <hein_tibosch@yahoo.es>
Thu, 13 Sep 2012 01:01:37 +0000 (11:01 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Mon, 17 Sep 2012 10:46:24 +0000 (20:46 +1000)
commita6a55d84e0ebb7562f9a08cef2ceb175ea36b5bd
tree68e4ad437491403585da72f6ebaea372e89448f1
parentad9e432f2f1b23888159e320fb651aba65513a21
lib/decompress.c add __init to decompress_method and data

WARNING: vmlinux.o(.text+0x14cfd8): Section mismatch in
reference from the variable compressed_formats to the function
.init.text:gunzip()
The function compressed_formats() references
the function __init gunzip().
etc..

This patch should solve it:

Within decompress.c, compressed_formats[] needs 'a __initdata annotation',
because some of it's data members refer to functions which will be
unloaded after init.

Consequently, its user decompress_method() will get the __init prefix.

Signed-off-by: Hein Tibosch <hein_tibosch@yahoo.es>
Cc: Albin Tonnerre <albin.tonnerre@free-electrons.com>
Cc: Phillip Lougher <phillip@lougher.demon.co.uk>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
lib/decompress.c