]> git.karo-electronics.de Git - karo-tx-linux.git/commit
lib/vsprintf.c: reduce stack use in number()
authorRasmus Villemoes <linux@rasmusvillemoes.dk>
Tue, 7 Apr 2015 23:44:54 +0000 (09:44 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Tue, 7 Apr 2015 23:44:54 +0000 (09:44 +1000)
commit985aa854f446f51c1cf9cacfa43f88e7971c5038
tree52c83925af24d0c4c813a365c37ea8ae6914d269
parent4a4f13df27d517347e473fcb6694022de63d2bee
lib/vsprintf.c: reduce stack use in number()

At least since the initial git commit, when base was passed as a separate
parameter, number() has only been called with bases 8, 10 and 16.  I'm
guessing that 66 was to accommodate 64 0/1, a sign and a '\0', but the
buffer is only used for the actual digits.  Octal digits carry 3 bits of
information, so 24 is enough.  Spell that 3*sizeof(num) so one less place
needs to be changed should long long ever be 128 bits.  Also remove the
commented-out code that would handle an arbitrary base.

Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Tejun Heo <tj@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
lib/vsprintf.c