Skip to content

Commit

Permalink
ndctl: release v80
Browse files Browse the repository at this point in the history
This release incorporates functionality up through the 6.11 kernel.

Highlights include support for listing CXL media-errors, usability
fixups in daxctl create-device, the addition of firmware revision
in CXL memdev listings, and misc unit test and build fixes.

Commands:
  cxl-list: add --media-errors option
  cxl-list: always emit memdev firmware revision
  daxctl: fail create-device with extra parameters
  daxctl: remove unused options from create-device usage message
  ndctl load-keys: stop leaking file descriptors upon error

Tests:
  cxl-poison.sh: new unit test
  cxl-events.sh: add test case for region info
  daxctl-create.sh: use bash math syntax to find available size
  daxctl-create.sh: use CXL DAX regions instead of efi_fake_mem
  rescan-partitions.sh: refine search for created partition

API:
  cxl_memdev_trigger_poison_list
  cxl_region_trigger_poison_list
  • Loading branch information
AlisonSchofield committed Oct 9, 2024
1 parent ed9c3c0 commit 04815e5
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=79
DEF_VER=80

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 : '79',
version : '80',
license : [
'GPL-2.0',
'LGPL-2.1',
Expand Down Expand Up @@ -298,16 +298,16 @@ config_h = configure_file(
add_project_arguments('-include', 'config.h', language : 'c')

LIBNDCTL_CURRENT=27
LIBNDCTL_REVISION=3
LIBNDCTL_REVISION=4
LIBNDCTL_AGE=21

LIBDAXCTL_CURRENT=7
LIBDAXCTL_REVISION=0
LIBDAXCTL_AGE=6

LIBCXL_CURRENT=7
LIBCXL_CURRENT=8
LIBCXL_REVISION=0
LIBCXL_AGE=6
LIBCXL_AGE=7

root_inc = include_directories(['.', 'ndctl', ])

Expand Down

0 comments on commit 04815e5

Please sign in to comment.