aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorVishal Verma <vishal.l.verma@intel.com>2023-02-22 11:11:42 -0700
committerVishal Verma <vishal.l.verma@intel.com>2023-02-22 15:35:07 -0700
commitcb4c8f9fd0afd926a6d72e8bfb3b258f055069cd (patch)
tree736c7d8686ef08ff8c0e2873df4fb74d3f37cce7
parent68c72f36e7bc8dd551848d17a12143af377c6195 (diff)
ndctl: release v76v76
This release incorporates functionality up to the 6.2 kernel. Highlights include the new cxl-monitor command that uses CXL trace events, fix for a long-standing off-by-one in memblock enumeration in libdaxctl, another daxctl fix to be tolerant of new sysfs attributes starting with 'memory_', that are not regular memblocks, and a few other misc cleanups and fixes. Commands: daxctl-online-memory: fix a memblock enumeration off-by-one daxctl-online-memory: tolerate non-memblock sysfs attrs that start with 'memory_' cxl-monitor: new command to monitor CXL events Tests: cxl-xor-region.sh: fix a skip vs. fail condition cxl-security.sh: fix intermittent failures due to race with cxl_test probe APIs: no new APIs
-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 a51bf3f0..ca3c528a 100755
--- a/git-version
+++ b/git-version
@@ -19,7 +19,7 @@ dirty() {
fi
}
-DEF_VER=75
+DEF_VER=76
LF='
'
diff --git a/meson.build b/meson.build
index 6a1b32e8..6d2c6827 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('ndctl', 'c',
- version : '75',
+ version : '76',
license : [
'GPL-2.0',
'LGPL-2.1',
@@ -295,15 +295,15 @@ config_h = configure_file(
add_project_arguments('-include', 'config.h', language : 'c')
LIBNDCTL_CURRENT=27
-LIBNDCTL_REVISION=0
+LIBNDCTL_REVISION=1
LIBNDCTL_AGE=21
LIBDAXCTL_CURRENT=6
-LIBDAXCTL_REVISION=1
+LIBDAXCTL_REVISION=2
LIBDAXCTL_AGE=5
LIBCXL_CURRENT=4
-LIBCXL_REVISION=0
+LIBCXL_REVISION=1
LIBCXL_AGE=3
root_inc = include_directories(['.', 'ndctl', ])