Skip to content
Snippets Groups Projects
Commit 54d001ee authored by Morris Jette's avatar Morris Jette
Browse files

node_features/knl_cray hardening

This change will avoid possible problems in the event that "capmc get_mcdram_cfg"
  fails to return a mcdram_pct value. Never observed, but this will harden the
  code just in case...
bug 3679
parent d7ff3756
No related branches found
No related tags found
No related merge requests found
...@@ -670,6 +670,11 @@ static void _json_parse_mcdram_cfg_object(json_object *jobj, mcdram_cfg_t *ent) ...@@ -670,6 +670,11 @@ static void _json_parse_mcdram_cfg_object(json_object *jobj, mcdram_cfg_t *ent)
int64_t x; int64_t x;
const char *p; const char *p;
/* Initialize object */
ent->dram_size = NO_VAL;
ent->mcdram_pct = NO_VAL16;
ent->mcdram_size = NO_VAL;
json_object_object_foreachC(jobj, iter) { json_object_object_foreachC(jobj, iter) {
type = json_object_get_type(iter.val); type = json_object_get_type(iter.val);
switch (type) { switch (type) {
...@@ -2287,8 +2292,9 @@ static int _update_node_state(char *node_list, bool set_locks) ...@@ -2287,8 +2292,9 @@ static int _update_node_state(char *node_list, bool set_locks)
!bit_test(mcdram_cfg2[k].node_bitmap, !bit_test(mcdram_cfg2[k].node_bitmap,
mcdram_cfg[i].nid)) mcdram_cfg[i].nid))
continue; continue;
if (mcdram_cfg[i].mcdram_pct != if ((mcdram_cfg[i].mcdram_pct != NO_VAL16) &&
mcdram_cfg2[k].cache_pct) { (mcdram_cfg[i].mcdram_pct !=
mcdram_cfg2[k].cache_pct)) {
info("%s: HBM mismatch between capmc and cnselect for nid %u (%u != %d)", info("%s: HBM mismatch between capmc and cnselect for nid %u (%u != %d)",
__func__, mcdram_cfg[i].nid, __func__, mcdram_cfg[i].nid,
mcdram_cfg[i].mcdram_pct, mcdram_cfg[i].mcdram_pct,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment