Skip to content

Commit

Permalink
ndctl: release v76
Browse files Browse the repository at this point in the history
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
  • Loading branch information
stellarhopper committed Feb 22, 2023
1 parent 68c72f3 commit cb4c8f9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion git-version
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dirty() {
fi
}

DEF_VER=75
DEF_VER=76

LF='
'
Expand Down
8 changes: 4 additions & 4 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('ndctl', 'c',
version : '75',
version : '76',
license : [
'GPL-2.0',
'LGPL-2.1',
Expand Down Expand Up @@ -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', ])
Expand Down

0 comments on commit cb4c8f9

Please sign in to comment.