diff options
author | Brian Horton <brianh@linux.ibm.com> | 2013-04-12 11:01:51 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2013-04-29 09:45:22 -0500 |
commit | 6cf6fb00b04853ec686ed72ba249a39383dfe106 (patch) | |
tree | 7cf70eb375673f8f8c9b57196d78af22c77ef19a /src/include/usr/hwas/hwasPlatTrace.H | |
parent | 98f3276e4f66fde768025e911b3bdbe7bdfb7274 (diff) | |
download | talos-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/hwasPlatTrace.H')
-rw-r--r-- | src/include/usr/hwas/hwasPlatTrace.H | 55 |
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_ |