Skip to content

Commit

Permalink
Release: Prepare v2.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Raspl <[email protected]>
  • Loading branch information
Stefan Raspl committed Nov 25, 2020
1 parent 67bf5ac commit b11d4fd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# major : Backwards compatible changes to the API
# minor : Additions leaving the API unmodified
# bugfix: Bugfixes only
VERSION = 2.1.x
VERSION = 2.2.0
VERM = $(shell echo $(VERSION) | cut -d '.' -f 1)
CFLAGS ?= -g -Wall -O2
LDFLAGS ?=
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ For enhancements, please describe the proposed change and its benefits.
Release History:
================

2.1.x (tbd)
2.2.0 (2020-09-09)
Changes:
- Add new tools zname and zhypinfo

Expand Down
6 changes: 3 additions & 3 deletions query_capacity.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ static int qc_debug_file_init(void) {
goto out_err;
}
}
qc_debug(NULL, "This is qclib v2.1.0, level 3877f257, date 2020-04-15 22:20:26 +0200\n");
qc_debug(NULL, "This is qclib v2.2.0, level 33725a4f, date 2020-09-09 17:55:45 +0200\n");
}

return 0;
Expand Down Expand Up @@ -653,8 +653,8 @@ static int qc_post_process_KVM_host(struct qc_handle *hdl) {
rc |= qc_set_attr_int(hdl, qc_num_core_total, *num_conf, ATTR_SRC_POSTPROC) ||
qc_copy_attr_value_rename(hdl, qc_num_core_dedicated, parent, qc_num_cpu_dedicated) ||
qc_copy_attr_value_rename(hdl, qc_num_core_shared, parent, qc_num_cpu_shared);
cps = qc_get_attr_value_int(parent, qc_num_cp_total);
ifls = qc_get_attr_value_int(parent, qc_num_cp_total);
cps = qc_get_attr_value_int(parent, qc_num_cp_total);
ifls = qc_get_attr_value_int(parent, qc_num_cp_total);
if (cps && ifls && *cps && *ifls) {
// mixed-mode LPARs use CPs only!
rc |= qc_set_attr_int(hdl, qc_num_ifl_total, 0, ATTR_SRC_POSTPROC) ||
Expand Down

0 comments on commit b11d4fd

Please sign in to comment.