aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorVishal Verma <vishal.l.verma@intel.com>2023-05-02 14:12:07 -0600
committerVishal Verma <vishal.l.verma@intel.com>2023-05-02 14:26:27 -0600
commit2fd570a0ed788b1bd0971dfdb1466a5dbcb79775 (patch)
tree97b1a08717da136706eb008ed946433f42654fb7
parent0df85eb222029eeb157d02ccb9de79fda55312ae (diff)
ndctl: release v77v77
This release incorporates functionality up to the 6.3 kernel. Highlights include some build fixes around cx-monitor and event tracing, the ability to create ram type regions, some fixes to create-region to allow a user-supplied UUID, cxl-list fixes for RCD devices, and region listings, cxl-list filtering improvements, and some unit test fixes. Commands: cxl-list: Include regions in the verbose listing cxl-list: Enumerate device-dax properties for regions cxl-list: Fix filtering RCDs cxl-list: Filter root decoders by region cxl-list: Add parent_dport attribute to port listings cxl-list: Add a type attribute to region listings cxl-create-region: add creation of ram type regions cxl-create-region: skip region_actions for region creation cxl-create-region: automatic type detection based on memdev capacity Tests: all: fix module load path expectations libndctl: fix dangling pointer warnings cxl-security.sh: use the correct 'cxl' binary APIs: cxl_decoder_create_ram_region cxl_port_get_parent_dport cxl_region_get_daxctl_region cxl_region_get_mode
-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 ca3c528a..3aaa9bc6 100755
--- a/git-version
+++ b/git-version
@@ -19,7 +19,7 @@ dirty() {
fi
}
-DEF_VER=76
+DEF_VER=77
LF='
'
diff --git a/meson.build b/meson.build
index b4f977f5..50e83cf7 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('ndctl', 'c',
- version : '76',
+ version : '77',
license : [
'GPL-2.0',
'LGPL-2.1',
@@ -305,9 +305,9 @@ LIBDAXCTL_CURRENT=6
LIBDAXCTL_REVISION=2
LIBDAXCTL_AGE=5
-LIBCXL_CURRENT=4
-LIBCXL_REVISION=1
-LIBCXL_AGE=3
+LIBCXL_CURRENT=5
+LIBCXL_REVISION=0
+LIBCXL_AGE=4
root_inc = include_directories(['.', 'ndctl', ])