mbox series

[v2,0/4] MIPS: process: Some fixes and improvements about get_frame_info()

Message ID 1611207098-11381-1-git-send-email-hejinyang@loongson.cn (mailing list archive)
Headers show
Series MIPS: process: Some fixes and improvements about get_frame_info() | expand

Message

Jinyang He Jan. 21, 2021, 5:31 a.m. UTC
Not familiar with microMIPS. Not test on microMIPS.

Changelog v2:
- Thanks to Thomas for suggesting that remove and sort header includes.
  [PATCH 1/4] for details.
- Thanks to Jiaxun for test v1 and told me it stuck at loading init.
  I mistakenly thought that r_format.rs and pool32a_format.rs are the same.
  See [PATCH 4/4] for details.

Jinyang He (4):
  MIPS: process: Remove unnecessary headers inclusion
  MIPS: microMIPS: Fix the judgment of mm_jr16_op and mm_jalr_op
  MIPS: Fix get_frame_info() handing of function size
  MIPS: Add is_jr_ra_ins() to end the loop early

 arch/mips/kernel/process.c | 87 ++++++++++++++++++++++++++--------------------
 1 file changed, 50 insertions(+), 37 deletions(-)

Comments

Thomas Bogendoerfer Jan. 25, 2021, 11:24 a.m. UTC | #1
On Thu, Jan 21, 2021 at 01:31:34PM +0800, Jinyang He wrote:
> Not familiar with microMIPS. Not test on microMIPS.
> 
> Changelog v2:
> - Thanks to Thomas for suggesting that remove and sort header includes.
>   [PATCH 1/4] for details.
> - Thanks to Jiaxun for test v1 and told me it stuck at loading init.
>   I mistakenly thought that r_format.rs and pool32a_format.rs are the same.
>   See [PATCH 4/4] for details.
> 
> Jinyang He (4):
>   MIPS: process: Remove unnecessary headers inclusion
>   MIPS: microMIPS: Fix the judgment of mm_jr16_op and mm_jalr_op
>   MIPS: Fix get_frame_info() handing of function size
>   MIPS: Add is_jr_ra_ins() to end the loop early
> 
>  arch/mips/kernel/process.c | 87 ++++++++++++++++++++++++++--------------------
>  1 file changed, 50 insertions(+), 37 deletions(-)

I've re-added linux/random.h and asm/mips-cps.h in your first patch and
applied all four patches to mips-next.

Thomas.