diff options
| author | Yue Du <daviddu@us.ibm.com> | 2018-07-17 12:48:37 -0500 |
|---|---|---|
| committer | hostboot <hostboot@us.ibm.com> | 2018-07-25 15:01:51 -0500 |
| commit | 6d438cd34f57dd6acc279fd1ec88f25fb13dbacd (patch) | |
| tree | 2894787101a4bb77dafb14fff4af0ef4f7fa40f9 | |
| parent | b46364f8852b35c1b31725721c6dd8f0ed78727d (diff) | |
| download | talos-hcode-6d438cd34f57dd6acc279fd1ec88f25fb13dbacd.tar.gz talos-hcode-6d438cd34f57dd6acc279fd1ec88f25fb13dbacd.zip | |
STOP: Fix hole in 62403
Key_Cronus_Test=PM_REGRESS
Change-Id: Ieef4ad78a186fbbb7ae9fc947b21640970b723f0
CQ: SW438634
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/62843
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
| -rwxr-xr-x | import/chips/p9/procedures/ppe_closed/cme/stop_cme/p9_cme_stop_entry.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/import/chips/p9/procedures/ppe_closed/cme/stop_cme/p9_cme_stop_entry.c b/import/chips/p9/procedures/ppe_closed/cme/stop_cme/p9_cme_stop_entry.c index 56448931..6af16da3 100755 --- a/import/chips/p9/procedures/ppe_closed/cme/stop_cme/p9_cme_stop_entry.c +++ b/import/chips/p9/procedures/ppe_closed/cme/stop_cme/p9_cme_stop_entry.c @@ -416,6 +416,12 @@ p9_cme_stop_entry() G_cme_stop_record.act_level[0], G_cme_stop_record.act_level[1]); + if (!core) + { + PK_TRACE_INF("WARNING: STOP1 PM_ACTIVE to be Ignored. Return"); + return; + } + // Mark core as to be stopped G_cme_stop_record.core_running &= ~core; |

