Commit 45eb570a authored by Dan Williams's avatar Dan Williams

libnvdimm, pfn: fix restoring memmap location

This path was missed when turning on the memmap in pmem support.  Permit
'pmem' as a valid location for the map.
Reported-by: default avatarJeff Moyer <jmoyer@redhat.com>
Signed-off-by: default avatarDan Williams <dan.j.williams@intel.com>
parent 9c412428
...@@ -301,10 +301,8 @@ int nd_pfn_validate(struct nd_pfn *nd_pfn) ...@@ -301,10 +301,8 @@ int nd_pfn_validate(struct nd_pfn *nd_pfn)
switch (le32_to_cpu(pfn_sb->mode)) { switch (le32_to_cpu(pfn_sb->mode)) {
case PFN_MODE_RAM: case PFN_MODE_RAM:
break;
case PFN_MODE_PMEM: case PFN_MODE_PMEM:
/* TODO: allocate from PMEM support */ break;
return -ENOTTY;
default: default:
return -ENXIO; return -ENXIO;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment