summaryrefslogtreecommitdiffstats
path: root/src/usr/pore
diff options
context:
space:
mode:
authorPatrick Williams <iawillia@us.ibm.com>2012-11-05 10:23:25 -0600
committerA. Patrick Williams III <iawillia@us.ibm.com>2012-12-14 11:24:36 -0600
commit950ddd853b2044956d82d17ae67bfe222e49fded (patch)
tree8e5ce7943e61099ecb5b86828f706ecd6fa672d3 /src/usr/pore
parent72c7d197703ed889940358611d8164d176af7c65 (diff)
downloadtalos-hostboot-950ddd853b2044956d82d17ae67bfe222e49fded.tar.gz
talos-hostboot-950ddd853b2044956d82d17ae67bfe222e49fded.zip
Reduce trace buffer sizes.
Change-Id: I13a80f814fd13a30315320c0b0c7374f39c3ecc2 Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/2522 Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com> Tested-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/pore')
-rw-r--r--src/usr/pore/poreve/poreveutil.C49
1 files changed, 25 insertions, 24 deletions
diff --git a/src/usr/pore/poreve/poreveutil.C b/src/usr/pore/poreve/poreveutil.C
index 3d8059061..db25bc8c2 100644
--- a/src/usr/pore/poreve/poreveutil.C
+++ b/src/usr/pore/poreve/poreveutil.C
@@ -1,26 +1,27 @@
-// IBM_PROLOG_BEGIN_TAG
-// This is an automatically generated prolog.
-//
-// $Source: src/usr/pore/poreve/poreveutil.C $
-//
-// IBM CONFIDENTIAL
-//
-// COPYRIGHT International Business Machines Corp. 2011
-//
-// p1
-//
-// Object Code Only (OCO) source materials
-// Licensed Internal Code Source Materials
-// IBM HostBoot Licensed Internal Code
-//
-// The source code for this program is not published or other-
-// wise divested of its trade secrets, irrespective of what has
-// been deposited with the U.S. Copyright Office.
-//
-// Origin: 30
-//
-// IBM_PROLOG_END
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/pore/poreve/poreveutil.C $ */
+/* */
+/* IBM CONFIDENTIAL */
+/* */
+/* COPYRIGHT International Business Machines Corp. 2011,2012 */
+/* */
+/* p1 */
+/* */
+/* Object Code Only (OCO) source materials */
+/* Licensed Internal Code Source Materials */
+/* IBM HostBoot Licensed Internal Code */
+/* */
+/* The source code for this program is not published or otherwise */
+/* divested of its trade secrets, irrespective of what has been */
+/* deposited with the U.S. Copyright Office. */
+/* */
+/* Origin: 30 */
+/* */
+/* IBM_PROLOG_END_TAG */
#include <trace/interface.H>
+#include <limits.h>
//******************************************************************************
// Trace descriptors
@@ -31,5 +32,5 @@ trace_desc_t* g_poreErrTd = NULL;
//******************************************************************************
// Global TracInit objects. Construction will initialize the trace buffer
//******************************************************************************
-TRAC_INIT(&g_poreDbgTd, "PORE_D", 4096);
-TRAC_INIT(&g_poreErrTd, "PORE_E", 4096);
+TRAC_INIT(&g_poreDbgTd, "PORE_D", KILOBYTE);
+TRAC_INIT(&g_poreErrTd, "PORE_E", KILOBYTE);
OpenPOWER on IntegriCloud