Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1e9535a591cf003e77c822da0e329a733705e80b
Commit:     1e9535a591cf003e77c822da0e329a733705e80b
Parent:     13fbcb731220341537131b32cf01b1e70df7206d
Author:     Mike Frysinger <[EMAIL PROTECTED]>
AuthorDate: Tue Oct 16 23:27:25 2007 -0700
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Wed Oct 17 08:42:54 2007 -0700

    Add stack checking for Blackfin
    
    Simply fill out the bits in checkstack.pl for Blackfin.  I thought I already
    sent this, but I don't see it in -mm anywhere ...
    
    Signed-off-by: Mike Frysinger <[EMAIL PROTECTED]>
    Cc: Bryan Wu <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 scripts/checkstack.pl |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/scripts/checkstack.pl b/scripts/checkstack.pl
index 6631586..b458e2a 100755
--- a/scripts/checkstack.pl
+++ b/scripts/checkstack.pl
@@ -78,6 +78,9 @@ my (@stack, $re, $x, $xs);
                #     pair for larger users. -- PFM.
                #a00048e0:       d4fc40f0        addi.l  r15,-240,r15
                $re = qr/.*addi\.l.*r15,-(([0-9]{2}|[3-9])[0-9]{2}),r15/o;
+       } elsif ($arch =~ /^blackfin$/) {
+               #   0:   00 e8 38 01     LINK 0x4e0;
+               $re = qr/.*[[:space:]]LINK[[:space:]]*(0x$x{1,8})/o;
        } else {
                print("wrong or unknown architecture\n");
                exit
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to