diff options
| author | Brian Horton <brianh@linux.ibm.com> | 2015-08-04 15:59:48 -0500 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2015-08-10 10:00:53 -0500 |
| commit | ec6c516c3a2228fe43e61c825ac215cf3e1a70e4 (patch) | |
| tree | bf914a72deb3f3e33684d67062c24f25dbf63f80 /src/include/usr/errl | |
| parent | 47bddb0047965d6d6f37b7686b5f6acc0263bb94 (diff) | |
| download | blackbird-hostboot-ec6c516c3a2228fe43e61c825ac215cf3e1a70e4.tar.gz blackbird-hostboot-ec6c516c3a2228fe43e61c825ac215cf3e1a70e4.zip | |
fixes to allow error logs to be pulled from PNOR to be resent
. correct logic in errorlog unflatten
. remove unconditional 'ack' in errlmanager
Change-Id: I170d6586062b6e4684a55782df83a1b19ed7d937
CQ: SW312094
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/19652
Tested-by: Jenkins Server
Tested-by: Jenkins OP Build CI
Tested-by: Jenkins OP HW
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Reviewed-by: STEPHEN M. CPREK <smcprek@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/usr/errl')
| -rw-r--r-- | src/include/usr/errl/errlmanager.H | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/include/usr/errl/errlmanager.H b/src/include/usr/errl/errlmanager.H index 21e9a12cc..89b545263 100644 --- a/src/include/usr/errl/errlmanager.H +++ b/src/include/usr/errl/errlmanager.H @@ -547,6 +547,15 @@ private: */ bool _updateErrlListIter(ErrlListItr_t & io_it); + /** + * @brief helper function to set the 'iv_skipShowingLog' flag of an error + * log. this needs to be called when we first get an errl object before we + * try to handle it. ie, when it's going to be committed, AND when it's + * been unflattened out of PNOR + * + * @param[in/out] io_err - errorlog that's being checked and updatd + */ + void setErrlSkipFlag(errlHndl_t io_err); }; } // End namespace |

