Comment on page
Managing NVDIMMs
Managing physical or emulated NVDIMMs using
ndctl
has no functional difference. Physical NVDIMM features and options may be controlled through the system BIOS. The BIOS cannot see emulated NVDIMMs.Observe the following restrictions when managing NVDIMMs
- DO NOT change the memory slot of physical NVDIMMs when they are part of an Interleave Set. Doing so changes the order of interleaving so data access will be compromised or corrupted. If interleaving is disabled, moving NVDIMMs to different slot locations is okay, but not recommended.
- DO NOT disable NVDIMMs when they are part of an active Region and/or Namespace as this will prevent data access and may corrupt data.
- ALWAYS backup the data and make a copy of the configuration layout prior to any changes.
The
ndct list -D
, or equivalent ndct list --dimm
, can be used to show active/enabled NVDIMM devices on the system, eg:# ndctl list -D
{
"dev":"nmem0",
"id":"8089-a2-1809-00000107",
"handle":1,
"phys_id":29
}
By default,
ndctl
only lists enabled/active dimms, regions, and namespaces. To include previously disabled (inactive) NVDIMMs, include the -i
flag to show both enabled and disabled devices, eg:# ndctl list -Di
{
"dev":"nmem0",
"id":"8089-a2-1809-00000107",
"handle":0,
"phys_id":29
}
{
"dev":"nmem1",
"id":"9759-b5-1459-00000502",
"handle":1,
"phys_id":30
"state":"disabled"
}
...
NVDIMM vendor specific tools can be used to display more information about the NVDIMMs from the operating system layer. For example, Intel Optane DC Persistent Memory Modules can be managed using the ipmctl utility. Refer to the IPMCTL User Guide for more information. For other persistent memory products, refer to the vendor specific documentation.
NVDIMMs can only be disabled if they have no active Regions or Namespaces. If an active/enabled namespace and/or region exists, a message is displayed:
# ndctl disable-dimm nmem0
nmem0 is active, skipping...
disabled 0 nmem
1) List the current active/enabled configuration
# ndctl list -NRD
2) Verify no fsdax or devdax namespaces are mounted or in-use by running applications
3) Destroy or disable any active/enabled namespace(s).
# ndctl disable-namespace <namespaceX.Y>
- or -
# ndctl destroy-namespace <namespaceX.Y>
4) Disable the regions used by the NVDIMM (nmem) that needs to be disabled
# ndctl disable-region <region.X>
5) Disable a single, subset, or all NVDIMM (nmem) devices
To disable a single NVDIMM, use:
# ndctl disable-dimm nmem0
disabled 1 nmem
To disable a subset or specific list or NVDIMMs, use:
# ndctl disable-dimm nmem0 nmem1 nmem5
disabled 3 nmem
To disable all NVDIMMs, use:
# ndctl disable-dimm all
disabled 12 nmem
6) Verify the NVDIMM(s) are disabled by listing inactive dimms and verifying the 'state':
# ndctl list -Di
{
"dev":"nmem0",
"id":"8089-a2-1809-00000107",
"handle":1,
"phys_id":29,
"state":"disabled"
}
...
1) Verify the nmem device, or list of nmem devices, that need to be enabled using the
ndctl list -Di
command:# ndctl list -Di
{
"dev":"nmem0",
"id":"8089-a2-1809-00000107",
"handle":1,
"phys_id":29,
"state":"disabled"
}
2) Enable the NVDIMM(s)
To enable a single NVDIMM (nmemX) device, use:
# ndctl enable-dimm nmem0
enabled 1 nmem
To enable a subset of disabled NVDIMMs, use:
# ndctl enable-dimm nmem0 nmem1 nmem5
enabled 3 nmem
To enable all disabled NVDIMMs, use:
# ndctl enable-dimm all
enabled 12 nmem
3) Verify the state by listing all NVDIMMs
# ndctl list -Di
A filtered list of NVDIMMs can shown using the
-d <nmemX>
or -dimm <nmemX>
option, eg:# ndctl list -Di -d nmem0
- or -
# ndctl list -Di -dimm nmem0
Last modified 3yr ago