diff options
| author | Andre Marin <aamarin@us.ibm.com> | 2019-01-07 16:10:52 -0600 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2019-02-21 10:34:05 -0600 |
| commit | a47c3bc95b0dc6ac9ced4b7777d122d86ff57a77 (patch) | |
| tree | 55df39ba3e132f6153f4caa41589676c2f2afbab /src/import/generic/procedures/xml/error_info | |
| parent | 5a0ae42a9589542e5eb6e1d1c95957d639e102d5 (diff) | |
| download | blackbird-hostboot-a47c3bc95b0dc6ac9ced4b7777d122d86ff57a77.tar.gz blackbird-hostboot-a47c3bc95b0dc6ac9ced4b7777d122d86ff57a77.zip | |
Generalize set fields in pre_data_init
Added a definition file for data engine traits for
specialization purposes. Moved pre_data_engine
definitions into a common templated version.
Change-Id: I891690f9f4d9d6865309c329f8fc769dd4836a23
Original-Change-Id: Ifb204da9cc6eb9d5d36b6eaeb1e1a5e99c97544e
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/69411
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Louis Stermole <stermole@us.ibm.com>
Tested-by: HWSV CI <hwsv-ci+hostboot@us.ibm.com>
Reviewed-by: STEPHEN GLANCY <sglancy@us.ibm.com>
Dev-Ready: ANDRE A. MARIN <aamarin@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/72223
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/import/generic/procedures/xml/error_info')
| -rw-r--r-- | src/import/generic/procedures/xml/error_info/generic_error.xml | 70 |
1 files changed, 69 insertions, 1 deletions
diff --git a/src/import/generic/procedures/xml/error_info/generic_error.xml b/src/import/generic/procedures/xml/error_info/generic_error.xml index 066c8817a..aaa8edd2b 100644 --- a/src/import/generic/procedures/xml/error_info/generic_error.xml +++ b/src/import/generic/procedures/xml/error_info/generic_error.xml @@ -5,7 +5,7 @@ <!-- --> <!-- OpenPOWER HostBoot Project --> <!-- --> -<!-- Contributors Listed Below - COPYRIGHT 2015,2018 --> +<!-- Contributors Listed Below - COPYRIGHT 2018,2019 --> <!-- [+] International Business Machines Corp. --> <!-- --> <!-- --> @@ -330,4 +330,72 @@ </callout> </hwpError> + <hwpError> + <rc>RC_MSS_UNEXPECTED_VALUE_SEEN</rc> + <description> Invalid value seen versus the expected value wanted </description> + <ffdc>TARGET</ffdc> + <ffdc>EXPECTED</ffdc> + <ffdc>ACTUAL</ffdc> + <ffdc>FUNCTION</ffdc> + <callout> + <procedure>CODE</procedure> + <priority>LOW</priority> + </callout> + </hwpError> + + <hwpError> + <rc>RC_MSS_OUT_OF_BOUNDS_INDEXING</rc> + <description> + Desired index is larger than list (std::vector, array, etc.) size. + Likely a programming error. + </description> + <ffdc>TARGET</ffdc> + <ffdc>INDEX</ffdc> + <ffdc>LIST_SIZE</ffdc> + <ffdc>FUNCTION</ffdc> + <callout> + <procedure>CODE</procedure> + <priority>LOW</priority> + </callout> + </hwpError> + + <hwpError> + <rc>RC_MSS_CONVERSION_ERROR</rc> + <description> + Overflow or underflow occured converting one integral type to another. + This is a programming error. + </description> + <ffdc>TARGET</ffdc> + <ffdc>ORIGINAL_VAL</ffdc> + <ffdc>CONVERTED_VAL</ffdc> + <ffdc>FUNCTION</ffdc> + <callout> + <procedure>CODE</procedure> + <priority>LOW</priority> + </callout> + </hwpError> + + <hwpError> + <rc>RC_MSS_FAILED_DATA_INTEGRITY_CHECK</rc> + <description> + Bad data received. + Settings are incorrect for received data. + This could be code problem (decoding) or bad data. + </description> + <ffdc>VALUE</ffdc> + <ffdc>BYTE</ffdc> + <ffdc>FFDC_CODE</ffdc> + <callout> + <procedure>CODE</procedure> + <priority>MEDIUM</priority> + </callout> + <callout> + <target>TARGET</target> + <priority>HIGH</priority> + </callout> + <deconfigure> + <target>TARGET</target> + </deconfigure> + </hwpError> + </hwpErrors> |

