Skip to content

Commit

Permalink
Fix more fallout from ovis_log_t API changes
Browse files Browse the repository at this point in the history
These samplers' build are untested, but it is almost certain that
they can't build without base_config() having the fourth option.
  • Loading branch information
morrone authored and tom95858 committed Jul 26, 2023
1 parent f540d7e commit 1fe3efe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ldms/src/sampler/cray_system_sampler/cray_aries_r_sampler.c
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,8 @@ static int config(struct ldmsd_plugin *self, struct attr_value_list *kwl, struct
return rc;
}

base = base_config(avl, "cray_aries_r_sampler", default_schema_name);
base = base_config(avl, "cray_aries_r_sampler", default_schema_name,
cray_aries_log);
if (!base) {
rc = errno;
goto out;
Expand Down
3 changes: 2 additions & 1 deletion ldms/src/sampler/cray_system_sampler/cray_gemini_r_sampler.c
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,8 @@ static int config(struct ldmsd_plugin *self, struct attr_value_list *kwl, struct
return rc;
}

base = base_config(avl, "cray_gemini_r_sampler", default_schema_name);
base = base_config(avl, "cray_gemini_r_sampler", default_schema_name,
cray_gemini_log);
if (!base) {
rc = errno;
goto out;
Expand Down

0 comments on commit 1fe3efe

Please sign in to comment.