diff options
author | Dean Sanner <dsanner@us.ibm.com> | 2016-10-17 17:20:33 -0500 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2016-10-24 10:19:12 -0400 |
commit | 64c297da4009225d915b2afa812e20bbaab80d3d (patch) | |
tree | f6365156fcf695b7d56442c5ab226641351a2b52 /src/sys/prof/idletask.C | |
parent | e1277081cde5fc391f5883651590c1ff1c52d9fe (diff) | |
download | talos-hostboot-64c297da4009225d915b2afa812e20bbaab80d3d.tar.gz talos-hostboot-64c297da4009225d915b2afa812e20bbaab80d3d.zip |
Remove nap for HW BU
Temporarily remove nap, otherwise can't look at core state
Change-Id: Ieb83e703f02c3cb12b35ac9f185c0d42f6b82721
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/31376
Tested-by: Jenkins Server <pfd-jenkins+hostboot@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/sys/prof/idletask.C')
-rw-r--r-- | src/sys/prof/idletask.C | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/sys/prof/idletask.C b/src/sys/prof/idletask.C index e59b8b017..26b260113 100644 --- a/src/sys/prof/idletask.C +++ b/src/sys/prof/idletask.C @@ -5,7 +5,9 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* COPYRIGHT International Business Machines Corp. 2012,2014 */ +/* Contributors Listed Below - COPYRIGHT 2012,2016 */ +/* [+] International Business Machines Corp. */ +/* */ /* */ /* Licensed under the Apache License, Version 2.0 (the "License"); */ /* you may not use this file except in compliance with the License. */ @@ -45,7 +47,8 @@ void* TaskManager::idleTaskLoop(void* unused) asm volatile("li 3, %0; sc" :: "K" (MISC_CPUNAP) : "r3", "cc"); // Execute nap. - nap(); + //@fixme-RTC:xxxxxx nap(); + } return NULL; } |