From 2fd570a0ed788b1bd0971dfdb1466a5dbcb79775 Mon Sep 17 00:00:00 2001 From: Vishal Verma Date: Tue, 2 May 2023 14:12:07 -0600 Subject: [PATCH] ndctl: release v77 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 --- git-version | 2 +- meson.build | 8 ++++---- 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', ])