diff options
| author | Dan Crowell <dcrowell@us.ibm.com> | 2013-10-23 00:03:18 -0500 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2013-10-24 11:51:39 -0500 |
| commit | 0f677832dd5daf1a9bacc4ce0ccf68c2238a89bb (patch) | |
| tree | 81c50e488dd4f396d4a081ffe92209fc020f85f4 /src | |
| parent | ac8821ff2a84fcbb18b7c8e296c0ae3905117271 (diff) | |
| download | blackbird-hostboot-0f677832dd5daf1a9bacc4ce0ccf68c2238a89bb.tar.gz blackbird-hostboot-0f677832dd5daf1a9bacc4ce0ccf68c2238a89bb.zip | |
Fix MDST format to use 32-bit address
Change-Id: Ic2985ead4bf6b9396ce40ec00d9225171f8c7f01
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/6829
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src')
| -rw-r--r-- | src/include/usr/dump/dumpif.H | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/include/usr/dump/dumpif.H b/src/include/usr/dump/dumpif.H index fe90ff0a2..ce5148fbf 100644 --- a/src/include/usr/dump/dumpif.H +++ b/src/include/usr/dump/dumpif.H @@ -101,8 +101,9 @@ namespace DUMP struct dumpEntry { uint64_t dataAddr; - uint64_t dataSize; - }; + uint32_t reserved; + uint32_t dataSize; + } PACKED; //The MDRT has this format. struct resultsEntry @@ -111,7 +112,7 @@ namespace DUMP uint64_t destAddr; uint64_t dataSize; uint64_t reserved; - }; + } PACKED; /** |

