summaryrefslogtreecommitdiffstats
path: root/src/usr/htmgt/htmgt.C
diff options
context:
space:
mode:
authorChris Cain <cjcain@us.ibm.com>2018-03-28 13:19:37 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2018-04-06 16:52:55 -0400
commitdb62cb5a72b80231b605ff13850bde4fb26e3786 (patch)
treeb00aef4bb50fda38b2e3a8daf8a4db040e59cddb /src/usr/htmgt/htmgt.C
parent8d6e983693fc02ff8e0b66946e3ae7a478a7da8a (diff)
downloadtalos-hostboot-db62cb5a72b80231b605ff13850bde4fb26e3786.tar.gz
talos-hostboot-db62cb5a72b80231b605ff13850bde4fb26e3786.zip
HTMGT: memory throttle calculation fixes
Change-Id: Ifde809c7c0110c2991f33bed64f1c10258e8b0c2 RTC: 189531 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/56403 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com> Reviewed-by: Sheldon Bailey <baileysh@us.ibm.com> Reviewed-by: Martha Broyles <mbroyles@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/htmgt/htmgt.C')
-rw-r--r--src/usr/htmgt/htmgt.C14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/usr/htmgt/htmgt.C b/src/usr/htmgt/htmgt.C
index 50006aaa0..83fcd4e51 100644
--- a/src/usr/htmgt/htmgt.C
+++ b/src/usr/htmgt/htmgt.C
@@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2014,2017 */
+/* Contributors Listed Below - COPYRIGHT 2014,2018 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -248,7 +248,7 @@ namespace HTMGT
// Notify HTMGT that an OCC has an error to report
void processOccError(TARGETING::Target * i_procTarget)
{
- TMGT_INF(">>processOccError(0x%p)", i_procTarget);
+ TMGT_INF(">>processOccAttn(0x%p)", i_procTarget);
TARGETING::Target* sys = nullptr;
TARGETING::targetService().getTopLevelTarget(sys);
@@ -271,7 +271,7 @@ namespace HTMGT
{
const uint32_t l_huid =
i_procTarget->getAttr<TARGETING::ATTR_HUID>();
- TMGT_INF("processOccError(HUID=0x%08X) called", l_huid);
+ TMGT_INF("processOccAttn(HUID=0x%08X) called", l_huid);
TARGETING::TargetHandleList pOccs;
getChildChiplets(pOccs, i_procTarget, TARGETING::TYPE_OCC);
@@ -299,13 +299,13 @@ namespace HTMGT
if (OccManager::occNeedsReset())
{
- TMGT_ERR("processOccError(): OCCs need to be reset");
+ TMGT_ERR("processOccAttn(): OCCs need to be reset");
// Don't pass failed target as OCC should have already
// been marked as failed during the poll.
errlHndl_t err = OccManager::resetOccs(nullptr);
if(err)
{
- TMGT_ERR("processOccError(): Error when attempting"
+ TMGT_ERR("processOccAttn(): Error when attempting"
" to reset OCCs");
ERRORLOG::errlCommit(err, HTMGT_COMP_ID);
}
@@ -314,10 +314,10 @@ namespace HTMGT
else
{
// OCC build failed...
- TMGT_ERR("processOccError() called, but unable to find OCCs");
+ TMGT_ERR("processOccAttn() called, but unable to find OCCs");
ERRORLOG::errlCommit(err, HTMGT_COMP_ID);
}
- TMGT_INF("<<processOccError()");
+ TMGT_INF("<<processOccAttn()");
} // end processOccError()
OpenPOWER on IntegriCloud