aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorVishal Verma <vishal.l.verma@intel.com>2023-08-03 16:07:22 -0600
committerVishal Verma <vishal.l.verma@intel.com>2023-08-03 16:23:12 -0600
commita871e6153b11fe63780b37cdcb1eb347b296095c (patch)
tree2f4ab9c0477be553610a9748efb719261d2d1297
parent611d45b23bdb36e8424e3db53216ff31932434e5 (diff)
ndctl: release v78v78
This release incorporates functionality up to the 6.5 kernel. Highlights include fixes to cxl-monitor and ndctl-monitor, a new cxl-update-firmware command, various documentation fixes, and a new unit test for cxl events. Commands: cxl-update-firmware: new command to update firmware on CXL memdevs {cxl,ndctl}-monitor: fixes for option handling for logging Tests: cxl-events.sh: new test for CXL events APIs: cxl_cmd_fw_info_get_active_slot cxl_cmd_fw_info_get_fw_ver cxl_cmd_fw_info_get_num_slots cxl_cmd_fw_info_get_online_activate_capable cxl_cmd_fw_info_get_staged_slot cxl_cmd_new_get_fw_info cxl_memdev_cancel_fw_update cxl_memdev_fw_update_get_remaining cxl_memdev_fw_update_in_progress cxl_memdev_update_fw
-rwxr-xr-xgit-version2
-rw-r--r--meson.build8
2 files changed, 5 insertions, 5 deletions
diff --git a/git-version b/git-version
index 3aaa9bc6..01ccba11 100755
--- a/git-version
+++ b/git-version
@@ -19,7 +19,7 @@ dirty() {
fi
}
-DEF_VER=77
+DEF_VER=78
LF='
'
diff --git a/meson.build b/meson.build
index 50cb4800..ef001f8f 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('ndctl', 'c',
- version : '77',
+ version : '78',
license : [
'GPL-2.0',
'LGPL-2.1',
@@ -298,16 +298,16 @@ config_h = configure_file(
add_project_arguments('-include', 'config.h', language : 'c')
LIBNDCTL_CURRENT=27
-LIBNDCTL_REVISION=1
+LIBNDCTL_REVISION=2
LIBNDCTL_AGE=21
LIBDAXCTL_CURRENT=6
LIBDAXCTL_REVISION=2
LIBDAXCTL_AGE=5
-LIBCXL_CURRENT=5
+LIBCXL_CURRENT=6
LIBCXL_REVISION=0
-LIBCXL_AGE=4
+LIBCXL_AGE=5
root_inc = include_directories(['.', 'ndctl', ])