X-Git-Url: https://git.karo-electronics.de/?a=blobdiff_plain;f=scripts%2Fdecode_stacktrace.sh;h=00d6d53c2681dac3ce2f736baff7cbc177825b0e;hb=52948cef8406a5f75484e2922b7140bc7c17f3f9;hp=515c4c00e957cae89febefc38533415490ae88c8;hpb=920f946428b70494eb1c64e0de260da0d8bde040;p=karo-tx-linux.git diff --git a/scripts/decode_stacktrace.sh b/scripts/decode_stacktrace.sh index 515c4c00e957..00d6d53c2681 100755 --- a/scripts/decode_stacktrace.sh +++ b/scripts/decode_stacktrace.sh @@ -14,11 +14,14 @@ declare -A cache parse_symbol() { # The structure of symbol at this point is: - # [name]+[offset]/[total length] + # ([name]+[offset]/[total length]) # # For example: # do_basic_setup+0x9c/0xbf + # Remove the englobing parenthesis + symbol=${symbol#\(} + symbol=${symbol%\)} # Strip the symbol name so that we could look it up local name=${symbol%+*}