| commit | 5189cbaaca65d8b511885266c7aa98a9b1977154 | [log] [tgz] |
|---|---|---|
| author | Vishal Verma <vishal.l.verma@intel.com> | Thu May 17 10:24:19 2018 -0600 |
| committer | Vishal Verma <vishal.l.verma@intel.com> | Thu May 17 10:24:19 2018 -0600 |
| tree | 9246d3f6480d24877ec2455819cc6652dc7c7c18 | |
| parent | 0e21017ead930cdadb8a482483216c983c2a44db [diff] |
ndctl: release v60.3
Fixes:
ndctl: fix libtool versioning
Utility library for managing the libnvdimm (non-volatile memory device) sub-system in the Linux kernel
./autogen.sh./configure CFLAGS='-g -O0' --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib64makemake checksudo make install
There are a number of packages required for the build steps that may not be installed by default. For information about the required packages, see the “BuildRequires:” lines in ndctl.spec.in.
https://github.com/pmem/ndctl/blob/master/ndctl.spec.in
See the latest documentation for the NVDIMM kernel sub-system here:
The unit tests run by make check require the nfit_test.ko module to be loaded. To build and install nfit_test.ko:
Obtain the kernel source. For example,git clone -b libnvdimm-for-next git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
Skip to step 3 if the kernel version is >= v4.8. Otherwise, for kernel versions < v4.8, configure the kernel to make some memory available to CMA (contiguous memory allocator). This will be used to emulate DAX.CONFIG_DMA_CMA=yCONFIG_CMA_SIZE_MBYTES=200
orcma=200M on the kernel command line.
Compile the libnvdimm sub-system as a module, make sure “zone device” memory is enabled, and enable the btt, pfn, and dax features of the sub-system:CONFIG_X86_PMEM_LEGACY=mCONFIG_ZONE_DEVICE=yCONFIG_LIBNVDIMM=mCONFIG_BLK_DEV_PMEM=mCONFIG_ND_BLK=mCONFIG_BTT=yCONFIG_NVDIMM_PFN=yCONFIG_NVDIMM_DAX=yCONFIG_DEV_DAX_PMEM=m
Build and install the unit test enabled libnvdimm modules in the following order. The unit test modules need to be in place prior to the depmod that runs during the final modules_installmake M=tools/testing/nvdimmsudo make M=tools/testing/nvdimm modules_installsudo make modules_install
Now run make check in the ndctl source directory, or ndctl test, if ndctl was built with --enable-test.
The unit tests will validate that the environment is set up correctly before they try to run. If the platform is misconfigured, i.e. the unit test modules are not available, or the test versions of the modules are superseded by the “in-tree/production” version of the modules make check will skip tests and report a message like the following in test/test-suite.log:SKIP: libndctl==============test/init: nfit_test_init: nfit.ko: appears to be production version: /lib/modules/4.8.8-200.fc24.x86_64/kernel/drivers/acpi/nfit/nfit.ko.xz__ndctl_test_skip: explicit skip test_libndctl:2684nfit_test unavailable skipping tests
If the unit test modules are indeed available in the modules ‘extra’ directory the default depmod policy can be overridden by adding a file to /etc/depmod.d with the following contents:override nfit * extraoverride device_dax * extraoverride dax_pmem * extraoverride libnvdimm * extraoverride nd_blk * extraoverride nd_btt * extraoverride nd_e820 * extraoverride nd_pmem * extra
The nfit_test module emulates pmem with memory allocated via vmalloc(). One of the side effects is that this breaks ‘physically contiguous’ assumptions in the driver. Use the '--align=4K option to ‘ndctl create-namespace’ to avoid these corner case scenarios.