summaryrefslogtreecommitdiffstats
path: root/src/usr/trace
diff options
context:
space:
mode:
authorPatrick Williams <iawillia@us.ibm.com>2014-02-17 17:29:55 -0600
committerA. Patrick Williams III <iawillia@us.ibm.com>2014-02-27 11:38:43 -0600
commit941d3e56f1f933dba3f98c3f82fae0561a5201e7 (patch)
treef8f907280d7176c83685739ca03797eb822bbfe9 /src/usr/trace
parent0f33e04d51a9ad3e37fa40db8970f166ff84432e (diff)
downloadtalos-hostboot-941d3e56f1f933dba3f98c3f82fae0561a5201e7.tar.gz
talos-hostboot-941d3e56f1f933dba3f98c3f82fae0561a5201e7.zip
Clean up beam errors in core.
Change-Id: I695a38ae88583a052cae19b930eb53171f8fab2b RTC:94993 Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/9050 Tested-by: Jenkins Server Reviewed-by: Douglas R. Gilbert <dgilbert@us.ibm.com> Reviewed-by: Michael Baiocchi <baiocchi@us.ibm.com> Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/trace')
-rw-r--r--src/usr/trace/compdesc.C5
-rw-r--r--src/usr/trace/entry.H4
-rw-r--r--src/usr/trace/runtime/rt_service.C4
3 files changed, 7 insertions, 6 deletions
diff --git a/src/usr/trace/compdesc.C b/src/usr/trace/compdesc.C
index 35f4de0c5..3d8de4ac4 100644
--- a/src/usr/trace/compdesc.C
+++ b/src/usr/trace/compdesc.C
@@ -5,7 +5,7 @@
/* */
/* IBM CONFIDENTIAL */
/* */
-/* COPYRIGHT International Business Machines Corp. 2012,2013 */
+/* COPYRIGHT International Business Machines Corp. 2012,2014 */
/* */
/* p1 */
/* */
@@ -95,7 +95,8 @@ namespace TRACE
#ifndef __HOSTBOOT_RUNTIME // TODO: RTC 79408
// Check for special SCAN component to force enable debug trace on.
- if (0 == memcmp(l_compName, "SCAN", 5))
+ if (l_rc && !l_rc->iv_debugEnabled &&
+ (0 == memcmp(l_compName, "SCAN", 5)))
{
TARGETING::Target* sys = NULL;
TARGETING::targetService().getTopLevelTarget(sys);
diff --git a/src/usr/trace/entry.H b/src/usr/trace/entry.H
index 1bd47ce18..8f98468ac 100644
--- a/src/usr/trace/entry.H
+++ b/src/usr/trace/entry.H
@@ -5,7 +5,7 @@
/* */
/* IBM CONFIDENTIAL */
/* */
-/* COPYRIGHT International Business Machines Corp. 2012 */
+/* COPYRIGHT International Business Machines Corp. 2012,2014 */
/* */
/* p1 */
/* */
@@ -56,7 +56,7 @@ namespace TRACE
ComponentDesc* comp; //< Component Descriptor for this Entry.
Entry* next; //< Linked-list 'next' ptr.
Entry* prev; //< Linked-list 'prev' ptr.
- uint16_t committed; //< Committed status.
+ volatile uint16_t committed; //< Committed status.
uint16_t size; //< Size of data portion.
char data[0]; //< Start of 'fsp-trace' style structure.
};
diff --git a/src/usr/trace/runtime/rt_service.C b/src/usr/trace/runtime/rt_service.C
index e7eda7280..f5e5da27e 100644
--- a/src/usr/trace/runtime/rt_service.C
+++ b/src/usr/trace/runtime/rt_service.C
@@ -5,7 +5,7 @@
/* */
/* IBM CONFIDENTIAL */
/* */
-/* COPYRIGHT International Business Machines Corp. 2013 */
+/* COPYRIGHT International Business Machines Corp. 2013,2014 */
/* */
/* p1 */
/* */
@@ -139,7 +139,7 @@ namespace TRACE
memcpy(bin_output, i_td->iv_compName, compName_len);
size_t output_pos = compName_len +
sprintf(&bin_output[compName_len],
- ":~[0x%04hx]", (int) pos);
+ ":~[0x%04hx]", (uint16_t) pos);
for (int i = 0; i < 16; ++i)
{
OpenPOWER on IntegriCloud