]> git.karo-electronics.de Git - karo-tx-linux.git/commit
init: remove permanent string buffer from do_one_initcall()
authorSteven Rostedt <rostedt@goodmis.org>
Thu, 9 May 2013 23:57:25 +0000 (09:57 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Tue, 21 May 2013 04:17:46 +0000 (14:17 +1000)
commit2c0c9c6d509248312e1ef6a3a993013ac1db3762
tree7ec1c12c74d92c4bf138cb6d17279394b8bb35dd
parent9660fa1e334bf4cf864bb5b417d0a265479f4dc5
init: remove permanent string buffer from do_one_initcall()

do_one_initcall() uses a 64 byte string buffer to save a message. This
buffer is declared static and is only used at boot up and when a module
is loaded. As 64 bytes is very small, and this function has very limited
scope, there's no reason to waste permanent memory with this string and
not just simply put it on the stack.

Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
init/main.c