diff options
| author | Dean Sanner <dsanner@us.ibm.com> | 2015-11-09 20:06:01 -0600 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2015-11-16 12:22:06 -0600 |
| commit | e50f3717c6b44309a1523acf489ac0c6baee89e2 (patch) | |
| tree | 3d69daab7713bd7129da1d72e51cb3813a04b579 /src/build/debug | |
| parent | 675bbeab1a01049b3a0d54e186710f2a0f19be35 (diff) | |
| download | talos-hostboot-e50f3717c6b44309a1523acf489ac0c6baee89e2.tar.gz talos-hostboot-e50f3717c6b44309a1523acf489ac0c6baee89e2.zip | |
Update hb-trace tool to handle lockless updates
Change-Id: I6cb2e580002296da1f7451b251d3d03ed0f03b3d
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/21924
Tested-by: Jenkins Server
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Reviewed-by: WILLIAM G. HOFFA <wghoffa@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/22060
Tested-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/build/debug')
| -rwxr-xr-x | src/build/debug/Hostboot/Trace.pm | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/build/debug/Hostboot/Trace.pm b/src/build/debug/Hostboot/Trace.pm index f88a423a1..7b1d02927 100755 --- a/src/build/debug/Hostboot/Trace.pm +++ b/src/build/debug/Hostboot/Trace.pm @@ -6,7 +6,9 @@ # # OpenPOWER HostBoot Project # -# COPYRIGHT International Business Machines Corp. 2011,2014 +# Contributors Listed Below - COPYRIGHT 2011,2015 +# [+] International Business Machines Corp. +# # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -109,6 +111,7 @@ sub main { my $buffer = ::read64($serviceAddr + 8*$i); my $page = ::read64($buffer + BUFFER_FIRST_PAGE_OFFSET); + $page = extractABAptr($page); readPage($page, BUFFER_PAGE_PREV_OFFSET, \@bufferPages); } @@ -231,6 +234,16 @@ sub round8 return $val; } +sub extractABAptr +{ + my ($val) = @_; + + $val = ($val & 0xFFFFFFFF); + + return $val; +} + + sub lookupComponent { my ($ptr, $hash) = @_; |

