From: Jan Beulich Date: Mon, 24 Sep 2012 06:41:29 +0000 (+1000) Subject: add further __init annotations to crypto/xor.c X-Git-Tag: next-20120926~52^2~13 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9d08edf92ca4752e8035fccbb8f728d37c8a16b9;p=karo-tx-linux.git add further __init annotations to crypto/xor.c Allow particularly do_xor_speed() to be discarded post-init. Signed-off-by: Jan Beulich Signed-off-by: NeilBrown --- diff --git a/crypto/xor.c b/crypto/xor.c index 65c7b416b4a3..35d6b3adf230 100644 --- a/crypto/xor.c +++ b/crypto/xor.c @@ -56,11 +56,11 @@ xor_blocks(unsigned int src_count, unsigned int bytes, void *dest, void **srcs) EXPORT_SYMBOL(xor_blocks); /* Set of all registered templates. */ -static struct xor_block_template *template_list; +static struct xor_block_template *__initdata template_list; #define BENCH_SIZE (PAGE_SIZE) -static void +static void __init do_xor_speed(struct xor_block_template *tmpl, void *b1, void *b2) { int speed;