Utility library for managing the libnvdimm (non-volatile memory device) sub-system in the Linux kernel
우분투 20.04 버전에서 apt install meson으로 meson을 설치하면 낮은 버전이 깔려서 meson compile [sub command] 가 먹지 않는다. (pmem#202 (comment)) 따라서 meson 높은 버전을 설치해야 위의 명령어가 먹힌다.(meson > 0.54.0)
sudo pip3 install meson
-> meson 1.2.0 버전 설치 완료 후 처음 meson setup부터 진행.
meson setup build;
meson compile -C build;
Optionally, to install:
meson install -C build
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
설치된 명령어(ndctl / daxctl / cxl..)들을 실행시켜봤을때 이런 오류가 발생할 수도 있다.
cpl@garage:~/Downloads/ndctl$ ndctl
ndctl: /lib/x86_64-linux-gnu/libndctl.so.6: version `LIBNDCTL_24' not found (required by ndctl)
ndctl: /lib/x86_64-linux-gnu/libndctl.so.6: version `LIBNDCTL_27' not found (required by ndctl)
ndctl: /lib/x86_64-linux-gnu/libndctl.so.6: version `LIBNDCTL_26' not found (required by ndctl)
ndctl: /lib/x86_64-linux-gnu/libndctl.so.6: version `LIBNDCTL_28' not found (required by ndctl)
ndctl: /lib/x86_64-linux-gnu/libndctl.so.6: version `LIBNDCTL_23' not found (required by ndctl)
ndctl: /lib/x86_64-linux-gnu/libndctl.so.6: version `LIBNDCTL_25' not found (required by ndctl)
이런 경우에는 /lib/x86_64-linux-gnu 경로에서 기존의 lib파일을 지워주면 된다. (위의 예시에서 기존의 lib파일은 libndctl.so.6이다.)
cpl@garage:/lib/x86_64-linux-gnu$ ll | grep libndctl
lrwxrwxrwx 1 root root 18 11월 3 2019 libndctl.so.6 -> libndctl.so.6.16.0
-rw-r--r-- 1 root root 139040 11월 3 2019 libndctl.so.6.16.0
cpl@garage:/lib/x86_64-linux-gnu$ sudo rm libndctl.so.6
cpl@garage:/lib/x86_64-linux-gnu$ ll | grep libndctl
-rw-r--r-- 1 root root 139040 11월 3 2019 libndctl.so.6.16.0
See the latest documentation for the NVDIMM kernel sub-system here:
https://www.kernel.org/doc/html/latest/driver-api/nvdimm/index.html
A getting started guide is also available on the kernel.org nvdimm wiki:
https://nvdimm.wiki.kernel.org/start
The unit tests run by meson test 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=y CONFIG_CMA_SIZE_MBYTES=200or
cma=200Mon 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=m CONFIG_ZONE_DEVICE=y CONFIG_LIBNVDIMM=m CONFIG_BLK_DEV_PMEM=m CONFIG_BTT=y CONFIG_NVDIMM_PFN=y CONFIG_NVDIMM_DAX=y CONFIG_DEV_DAX_PMEM=m CONFIG_ENCRYPTED_KEYS=y -
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
depmodthat runs during the finalmodules_installmake M=tools/testing/nvdimm sudo make M=tools/testing/nvdimm modules_install sudo make modules_install -
Now run
meson test -C buildin the ndctl source directory, orndctl test, if ndctl was built with-Dtest=enabledas a configuration option to meson. -
To run the 'destructive' set of tests that may clobber existing pmem configurations and data, configure meson with the destructive option after the
meson setupstep:meson configure -Dtest=enabled -Ddestructive=enabled build;
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 meson test will skip tests and report a message like the following in
build/meson-logs/testlog.txt
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:2684
nfit_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 * extra
override device_dax * extra
override dax_pmem * extra
override dax_pmem_core * extra
override dax_pmem_compat * extra
override libnvdimm * extra
override nd_btt * extra
override nd_e820 * extra
override 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.