diff options
author | Sachin Gupta <sgupta2m@in.ibm.com> | 2017-04-06 02:33:11 -0500 |
---|---|---|
committer | AMIT J. TENDOLKAR <amit.tendolkar@in.ibm.com> | 2017-04-06 06:08:56 -0400 |
commit | 05164ddf60324e68224344a12e320ed440e1b032 (patch) | |
tree | 537438e2d002b14b049e579d247eb345ac6a6967 | |
parent | e5e297243317499fd77318d8e2d86149e878a5c4 (diff) | |
download | talos-sbe-05164ddf60324e68224344a12e320ed440e1b032.tar.gz talos-sbe-05164ddf60324e68224344a12e320ed440e1b032.zip |
Remove traces from FAPI_TRY as temporary workaround
We will get more space once image compression is in place. Then we
can enable the traces again as it helps in debugging problems.
Change-Id: I86cff7681e094b6b41bbfadeb6af9f3a41accd6e
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/38911
Reviewed-by: RAJA DAS <rajadas2@in.ibm.com>
Reviewed-by: Santosh S. Puranik <santosh.puranik@in.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Shakeeb A. Pasha B K <shakeebbk@in.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Sachin Gupta <sgupta2m@in.ibm.com>
-rw-r--r-- | src/hwpf/include/plat/plat_error_scope.H | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/hwpf/include/plat/plat_error_scope.H b/src/hwpf/include/plat/plat_error_scope.H index bc5ad9f5..153de5e2 100644 --- a/src/hwpf/include/plat/plat_error_scope.H +++ b/src/hwpf/include/plat/plat_error_scope.H @@ -5,7 +5,7 @@ /* */ /* OpenPOWER sbe Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2012,2016 */ +/* Contributors Listed Below - COPYRIGHT 2012,2017 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -47,8 +47,9 @@ #define PLAT_FAPI_TRY_TRACE( __operation__, ... ) \ if ((fapi2::current_err = (__operation__)) != fapi2::FAPI2_RC_SUCCESS) \ - { \ - FAPI_ERR(__VA_ARGS__); \ + { /* TODO via RTC 172311 */ \ + /* Enable these traces back again */ \ + /* FAPI_ERR(__VA_ARGS__); */ \ goto fapi_try_exit; \ } |