diff options
| author | Juan Medina <jr.medina@us.ibm.com> | 2017-06-21 13:56:42 -0500 |
|---|---|---|
| committer | Joshua Hunsberger <jahunsbe@us.ibm.com> | 2017-10-23 17:58:00 -0500 |
| commit | f6284811f1234d57b7069a021dd951f64f09e9d8 (patch) | |
| tree | 2e7ae66412e728d3bbabc8c254fea0159bb4b22a | |
| parent | 7de71887549856d3cba1b282e7129c2429b7058a (diff) | |
| download | talos-hcode-f6284811f1234d57b7069a021dd951f64f09e9d8.tar.gz talos-hcode-f6284811f1234d57b7069a021dd951f64f09e9d8.zip | |
Change to the code so that a halted GPE doesn't cause snapshot to fail
Change-Id: I202a3cfcce4c763b96963f547e1091a42e657d62
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/42232
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Brian T. Vanderpool <vanderp@us.ibm.com>
Reviewed-by: Gregory S. Still <stillgs@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
| -rw-r--r-- | import/chips/p9/procedures/hwp/lib/p9_ppe_state.C | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/import/chips/p9/procedures/hwp/lib/p9_ppe_state.C b/import/chips/p9/procedures/hwp/lib/p9_ppe_state.C index 7d7a436a..e8af9a9b 100644 --- a/import/chips/p9/procedures/hwp/lib/p9_ppe_state.C +++ b/import/chips/p9/procedures/hwp/lib/p9_ppe_state.C @@ -372,7 +372,7 @@ ppe_state_data(const fapi2::Target<fapi2::TARGET_TYPE_PROC_CHIP>& i_target, FAPI_TRY(putScom(i_target, i_base_address + PPE_XIRAMDBG , l_sprg0_save), "Error in GETSCOM"); //If SNAPSHOT mode and only if initially PPE was not halted then do XCR(resume) - if ((i_mode == SNAPSHOT) && ~(l_ppe_halt_state)) + if ((i_mode == SNAPSHOT) && !(l_ppe_halt_state)) { FAPI_TRY(ppe_resume(i_target, i_base_address)); |

