daxctl list [<options>]
Walk all the device-dax-regions in the system and list all device instances along with some of their major attributes.
Options can be specified to limit the output to objects of a certain class. Where the classes are regions or devices. By default, daxctl list with no options is equivalent to:
daxctl list --devices
# daxctl list --regions --devices
{
  "id":1,
  "devices":[
    {
      "chardev":"dax1.0",
      "size":3233808384
    }
  ]
}
-r, --region=
-d, --dev=
# daxctl list --dev=1.0
{
  "chardev":"dax1.0",
  "size":3233808384
}
-D, --devices
-R, --regions
-i, --idle
-u, --human
# daxctl list
{
  "chardev":"dax1.0",
  "size":32828817408
}
# daxctl list --human
{
  "chardev":"dax1.0",
  "size":"30.57 GiB (32.83 GB)"
}
Copyright (c) 2016 - 2019, Intel Corporation. License GPLv2: GNU GPL version 2 <http://gnu.org/licenses/gpl.html>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.