[MIPS] get_frame_info(): null function size means size is unknown
authorFranck Bui-Huu <vagabon.xyz@gmail.com>
Fri, 18 Aug 2006 14:18:08 +0000 (16:18 +0200)
committerRalf Baechle <ralf@linux-mips.org>
Wed, 27 Sep 2006 12:37:58 +0000 (13:37 +0100)
commit29b376ff10aaea69ee4d93b70d0fbb2ebfd80f4e
treeb498fe6a70b26fe9a3dd79d51eaf744951b74583
parent1fd6909802b837ed5510603846c0ce5938d296a1
[MIPS] get_frame_info(): null function size means size is unknown

This patch adds 2 sanity checks.

The first one test that the start address of the function to analyze has been
set by the caller. If not return an error since nothing usefull can be done
without.

The second one checks that the function's size has been set. A null size can
happen if CONFIG_KALLSYMS is not set and it means that we don't know the size
of the function to analyze. In this case, we make it equal to 128 instructions
by default.

Signed-off-by: Franck Bui-Huu <vagabon.xyz@gmail.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/kernel/process.c