diff options
author | Benjamin Weisenbeck <bweisenb@us.ibm.com> | 2018-07-19 15:08:13 -0500 |
---|---|---|
committer | Zane C. Shelley <zshelle@us.ibm.com> | 2018-07-20 21:23:49 -0500 |
commit | 5268e2f09ba13bd4e330f414ca76c65c8459ba6c (patch) | |
tree | e44ec6bfcad11d8fa14f4842ef9aceeae3b6de2b /src/usr | |
parent | 99c1c9d7dcc2944a949066868c3472db5b1d8915 (diff) | |
download | talos-hostboot-5268e2f09ba13bd4e330f414ca76c65c8459ba6c.tar.gz talos-hostboot-5268e2f09ba13bd4e330f414ca76c65c8459ba6c.zip |
PRD: Increase threshold on cache CEs to allow 64 line deletes (128 CEs)
Change-Id: I100841a140f712129350d8c17e71197fb8114b73
CQ: SW438843
Backport: release-fips920
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/62962
Reviewed-by: Matt Derksen <mderkse1@us.ibm.com>
Reviewed-by: Caleb N. Palmer <cnpalmer@us.ibm.com>
Reviewed-by: Brian J. Stegmiller <bjs@us.ibm.com>
Reviewed-by: Zane C. Shelley <zshelle@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/63061
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Diffstat (limited to 'src/usr')
-rw-r--r-- | src/usr/diag/prdf/common/plat/p9/p9_ex_actions.rule | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr/diag/prdf/common/plat/p9/p9_ex_actions.rule b/src/usr/diag/prdf/common/plat/p9/p9_ex_actions.rule index 92a57dfe4..fe987af8b 100644 --- a/src/usr/diag/prdf/common/plat/p9/p9_ex_actions.rule +++ b/src/usr/diag/prdf/common/plat/p9/p9_ex_actions.rule @@ -5,7 +5,7 @@ # # OpenPOWER HostBoot Project # -# Contributors Listed Below - COPYRIGHT 2016,2017 +# Contributors Listed Below - COPYRIGHT 2016,2018 # [+] International Business Machines Corp. # # @@ -26,7 +26,7 @@ actionclass l3_cache_ce { calloutSelfMed; - threshold( field(32 / day), mfg_file(ATTR_MNFG_TH_P8EX_L3_CACHE_CES) ); + threshold( field(128 / day), mfg_file(ATTR_MNFG_TH_P8EX_L3_CACHE_CES) ); funccall("L3CE"); funccall("cacheCeWorkaround"); }; @@ -54,7 +54,7 @@ actionclass l3_lru_parity_error actionclass l2_cache_ce { calloutSelfMed; - threshold( field(32 / day), mfg_file(ATTR_MNFG_TH_P8EX_L2_CACHE_CES) ); + threshold( field(128 / day), mfg_file(ATTR_MNFG_TH_P8EX_L2_CACHE_CES) ); funccall("L2CE"); funccall("cacheCeWorkaround"); }; |