The patch titled Subject: scripts/checkstack.pl: add support for nios2 has been added to the -mm tree. Its filename is scripts-checkstackpl-add-support-for-nios2.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/scripts-checkstackpl-add-support-for-nios2.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/scripts-checkstackpl-add-support-for-nios2.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Tobias Klauser <tklauser@xxxxxxxxxx> Subject: scripts/checkstack.pl: add support for nios2 Adjust checkstack.pl for the nios2 architecture. Link: http://lkml.kernel.org/r/20170116113052.15034-1-tklauser@xxxxxxxxxx Signed-off-by: Tobias Klauser <tklauser@xxxxxxxxxx> Cc: Ley Foon Tan <lftan@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/checkstack.pl | 3 +++ 1 file changed, 3 insertions(+) diff -puN scripts/checkstack.pl~scripts-checkstackpl-add-support-for-nios2 scripts/checkstack.pl --- a/scripts/checkstack.pl~scripts-checkstackpl-add-support-for-nios2 +++ a/scripts/checkstack.pl @@ -78,6 +78,9 @@ my (@stack, $re, $dre, $x, $xs, $funcre) } elsif ($arch eq 'mips') { #88003254: 27bdffe0 addiu sp,sp,-32 $re = qr/.*addiu.*sp,sp,-(([0-9]{2}|[3-9])[0-9]{2})/o; + } elsif ($arch eq 'nios2') { + #25a8: defffb04 addi sp,sp,-20 + $re = qr/.*addi.*sp,sp,-(([0-9]{2}|[3-9])[0-9]{2})/o; } elsif ($arch eq 'parisc' || $arch eq 'parisc64') { $re = qr/.*ldo ($x{1,8})\(sp\),sp/o; } elsif ($arch eq 'ppc') { _ Patches currently in -mm which might be from tklauser@xxxxxxxxxx are scripts-checkstackpl-add-support-for-nios2.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html