Skip to content

Commit d3fdcf9

Browse files
committed
ndctl: release v50
This release incorporates the capabilities of the v4.5 kernel, and adds the below features and fixes: New apis: ndctl_bus_get_ctx ndctl_namespace_get_pfn ndctl_namespace_get_mode ndctl_namespace_get_numa_node ndctl_region_get_pfn_seed ndctl_pfn_get_first ndctl_pfn_get_next ndctl_pfn_get_id ndctl_pfn_get_namespace ndctl_pfn_get_uuid ndctl_pfn_set_uuid ndctl_pfn_get_location ndctl_pfn_set_location ndctl_pfn_get_align ndctl_pfn_set_align ndctl_pfn_set_namespace ndctl_pfn_get_bus ndctl_pfn_get_ctx ndctl_pfn_get_devname ndctl_pfn_get_block_device ndctl_pfn_is_valid ndctl_pfn_is_enabled ndctl_pfn_get_region ndctl_pfn_enable ndctl_pfn_delete ndctl_pfn_is_configured New utility commands: list help (man pages) create-namespace Api fixes: ndctl_{namespace|btt}_foreach crash fix ndctl_namespace_delete no longer errors on "io" namespaces miscellaneous static analysis fixes Utility command fixes: {en|dis}able-{namespace|region} return code Signed-off-by: Dan Williams <[email protected]>
1 parent 35ddd4f commit d3fdcf9

12 files changed

+13
-13
lines changed

Makefile.am

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ SED_PROCESS = \
4545
%.pc: %.pc.in Makefile
4646
$(SED_PROCESS)
4747

48-
LIBNDCTL_CURRENT=5
48+
LIBNDCTL_CURRENT=6
4949
LIBNDCTL_REVISION=0
50-
LIBNDCTL_AGE=2
50+
LIBNDCTL_AGE=0
5151

5252
pkginclude_HEADERS = lib/ndctl/libndctl.h
5353
lib_LTLIBRARIES = lib/libndctl.la

builtin-xaction-namespace.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright(c) 2015 Intel Corporation. All rights reserved.
2+
* Copyright(c) 2015-2016 Intel Corporation. All rights reserved.
33
*
44
* This program is free software; you can redistribute it and/or modify it
55
* under the terms of version 2 of the GNU General Public License as

git-version-gen

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dirty() {
1010
}
1111

1212
GVF=version.m4
13-
DEF_VER=v47
13+
DEF_VER=v50
1414

1515
LF='
1616
'

lib/libndctl-ars.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014-2015, Intel Corporation.
2+
* Copyright (c) 2014-2016, Intel Corporation.
33
*
44
* This program is free software; you can redistribute it and/or modify it
55
* under the terms and conditions of the GNU Lesser General Public License,

lib/libndctl-private.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014-2015, Intel Corporation.
2+
* Copyright (c) 2014-2016, Intel Corporation.
33
*
44
* This program is free software; you can redistribute it and/or modify it
55
* under the terms and conditions of the GNU Lesser General Public License,

lib/libndctl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014-2015, Intel Corporation.
2+
* Copyright (c) 2014-2016, Intel Corporation.
33
*
44
* This program is free software; you can redistribute it and/or modify it
55
* under the terms and conditions of the GNU Lesser General Public License,

lib/ndctl/libndctl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014-2015, Intel Corporation.
2+
* Copyright (c) 2014-2016, Intel Corporation.
33
*
44
* This program is free software; you can redistribute it and/or modify it
55
* under the terms and conditions of the GNU Lesser General Public License,

ndctl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014-2015, Intel Corporation.
2+
* Copyright (c) 2014-2016, Intel Corporation.
33
*
44
* This program is free software; you can redistribute it and/or modify it
55
* under the terms and conditions of the GNU Lesser General Public License,

nfit.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* NVDIMM Firmware Interface Table - NFIT
33
*
4-
* Copyright(c) 2013-2015 Intel Corporation. All rights reserved.
4+
* Copyright(c) 2013-2016 Intel Corporation. All rights reserved.
55
*
66
* This program is free software; you can redistribute it and/or modify
77
* it under the terms of version 2 of the GNU General Public License as

test/dax-dev.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014-2015, Intel Corporation.
2+
* Copyright (c) 2014-2016, Intel Corporation.
33
*
44
* This program is free software; you can redistribute it and/or modify it
55
* under the terms and conditions of the GNU Lesser General Public License,

test/dpa-alloc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014-2015, Intel Corporation.
2+
* Copyright (c) 2014-2016, Intel Corporation.
33
*
44
* This program is free software; you can redistribute it and/or modify it
55
* under the terms and conditions of the GNU Lesser General Public License,

test/libndctl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014-2015, Intel Corporation.
2+
* Copyright (c) 2014-2016, Intel Corporation.
33
*
44
* This program is free software; you can redistribute it and/or modify it
55
* under the terms and conditions of the GNU Lesser General Public License,

0 commit comments

Comments
 (0)