summaryrefslogtreecommitdiffstats
path: root/src/include/usr/hwas
diff options
context:
space:
mode:
authorBrian Horton <brianh@linux.ibm.com>2013-04-12 11:01:51 -0500
committerA. Patrick Williams III <iawillia@us.ibm.com>2013-04-29 09:45:22 -0500
commit6cf6fb00b04853ec686ed72ba249a39383dfe106 (patch)
tree7cf70eb375673f8f8c9b57196d78af22c77ef19a /src/include/usr/hwas
parent98f3276e4f66fde768025e911b3bdbe7bdfb7274 (diff)
downloadtalos-hostboot-6cf6fb00b04853ec686ed72ba249a39383dfe106.tar.gz
talos-hostboot-6cf6fb00b04853ec686ed72ba249a39383dfe106.zip
Improve FFDC for deconfigure/gard functions
Also, remove error generation for an unknown Target entity path in deconfigureTargetsFromGardRecordsForIpl() - the GARD record could be for the 'other' platform instead of 'this' platform. Change-Id: Ic5de7454c624e18023d83fa41887aa5e4e1d6ae0 RTC: 69175 Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/4043 Tested-by: Jenkins Server Reviewed-by: MIKE J. JONES <mjjones@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com> Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/usr/hwas')
-rw-r--r--src/include/usr/hwas/hwasPlatTrace.H55
1 files changed, 30 insertions, 25 deletions
diff --git a/src/include/usr/hwas/hwasPlatTrace.H b/src/include/usr/hwas/hwasPlatTrace.H
index 54077bf67..931f8586f 100644
--- a/src/include/usr/hwas/hwasPlatTrace.H
+++ b/src/include/usr/hwas/hwasPlatTrace.H
@@ -1,26 +1,25 @@
-/* IBM_PROLOG_BEGIN_TAG
- * This is an automatically generated prolog.
- *
- * $Source: src/include/usr/hwas/hwasPlatTrace.H $
- *
- * IBM CONFIDENTIAL
- *
- * COPYRIGHT International Business Machines Corp. 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 other-
- * wise divested of its trade secrets, irrespective of what has
- * been deposited with the U.S. Copyright Office.
- *
- * Origin: 30
- *
- * IBM_PROLOG_END_TAG
- */
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/include/usr/hwas/hwasPlatTrace.H $ */
+/* */
+/* IBM CONFIDENTIAL */
+/* */
+/* COPYRIGHT International Business Machines Corp. 2012,2013 */
+/* */
+/* 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 */
/**
* @file hwas/hwasPlatTrace.H
*
@@ -53,10 +52,16 @@ namespace HWAS
// Information traces (go into slow trace buffer that should not wrap often)
#define HWAS_INF(_fmt_, _args_...) \
- TRACFCOMP(g_trac_imp_hwas, TRACE_FILENAME _fmt_, ##_args_)
+ TRACFCOMP(g_trac_imp_hwas, INFO_MRK TRACE_FILENAME _fmt_, ##_args_)
+
+#define HWAS_INF_BIN(_str_, _addr_, _len_) \
+ TRACFBIN(g_trac_imp_hwas, INFO_MRK TRACE_FILENAME _str_, _addr_, _len_)
// Error traces (go into slow trace buffer that should not wrap often)
#define HWAS_ERR(_fmt_, _args_...) \
- TRACFCOMP(g_trac_imp_hwas, TRACE_FILENAME _fmt_, ##_args_)
+ TRACFCOMP(g_trac_imp_hwas, ERR_MRK TRACE_FILENAME _fmt_, ##_args_)
+
+#define HWAS_ERR_BIN(_str_, _addr_, _len_) \
+ TRACFBIN(g_trac_imp_hwas, ERR_MRK TRACE_FILENAME _str_, _addr_, _len_)
#endif // HWASPLATTRACE_H_
OpenPOWER on IntegriCloud