Skip to content

Commit

Permalink
[MIPS] Make frame_info_init() more readable.
Browse files Browse the repository at this point in the history
Signed-off-by: Franck Bui-Huu <vagabon.xyz@gmail.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Franck Bui-Huu authored and Ralf Baechle committed Sep 27, 2006
1 parent 87151ae commit 6057a79
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions arch/mips/kernel/process.c
Original file line number Diff line number Diff line change
Expand Up @@ -370,15 +370,15 @@ static int __init frame_info_init(void)
mfinfo[0].func = schedule;
schedule_frame = &mfinfo[0];
#endif
for (i = 0; i < ARRAY_SIZE(mfinfo) && mfinfo[i].func; i++) {
struct mips_frame_info *info = &mfinfo[i];
if (get_frame_info(info)) {
/* leaf or unknown */
if (info->func == schedule)
printk("Can't analyze prologue code at %p\n",
info->func);
}
}
for (i = 0; i < ARRAY_SIZE(mfinfo) && mfinfo[i].func; i++)
get_frame_info(mfinfo + i);

/*
* Without schedule() frame info, result given by
* thread_saved_pc() and get_wchan() are not reliable.
*/
if (schedule_frame->pc_offset < 0)
printk("Can't analyze schedule() prologue at %p\n", schedule);

mfinfo_num = i;
return 0;
Expand Down

0 comments on commit 6057a79

Please sign in to comment.