MIPS: mcount: Adjust stack pointer for static trace in MIPS32
authorMarkos Chandras <markos.chandras@imgtec.com>
Tue, 16 Sep 2014 14:55:12 +0000 (15:55 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Fri, 26 Sep 2014 09:41:17 +0000 (11:41 +0200)
commit8a574cfa2652545eb95595d38ac2a0bb501af0ae
tree9c49a781cda974d511d4239e172cdb10692d5cee
parentc8c0da6bdf0f0d6f59fc23aab6ee373a131df82d
MIPS: mcount: Adjust stack pointer for static trace in MIPS32

Every mcount() call in the MIPS 32-bit kernel is done as follows:

[...]
move at, ra
jal _mcount
addiu sp, sp, -8
[...]

but upon returning from the mcount() function, the stack pointer
is not adjusted properly. This is explained in details in 58b69401c797
(MIPS: Function tracer: Fix broken function tracing).

Commit ad8c396936e3 ("MIPS: Unbreak function tracer for 64-bit kernel.)
fixed the stack manipulation for 64-bit but it didn't fix it completely
for MIPS32.

Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Cc: <stable@vger.kernel.org>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/7792/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/kernel/mcount.S