|
@@ -356,6 +356,26 @@ static int nvdimm_namespace_detach_pfn(struct nd_namespace_common *ndns)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+/*
|
|
|
+ * We hotplug memory at section granularity, pad the reserved area from
|
|
|
+ * the previous section base to the namespace base address.
|
|
|
+ */
|
|
|
+static unsigned long init_altmap_base(resource_size_t base)
|
|
|
+{
|
|
|
+ unsigned long base_pfn = __phys_to_pfn(base);
|
|
|
+
|
|
|
+ return PFN_SECTION_ALIGN_DOWN(base_pfn);
|
|
|
+}
|
|
|
+
|
|
|
+static unsigned long init_altmap_reserve(resource_size_t base)
|
|
|
+{
|
|
|
+ unsigned long reserve = __phys_to_pfn(SZ_8K);
|
|
|
+ unsigned long base_pfn = __phys_to_pfn(base);
|
|
|
+
|
|
|
+ reserve += base_pfn - PFN_SECTION_ALIGN_DOWN(base_pfn);
|
|
|
+ return reserve;
|
|
|
+}
|
|
|
+
|
|
|
static int nvdimm_namespace_attach_pfn(struct nd_namespace_common *ndns)
|
|
|
{
|
|
|
struct nd_namespace_io *nsio = to_nd_namespace_io(&ndns->dev);
|
|
@@ -369,8 +389,8 @@ static int nvdimm_namespace_attach_pfn(struct nd_namespace_common *ndns)
|
|
|
phys_addr_t offset;
|
|
|
int rc;
|
|
|
struct vmem_altmap __altmap = {
|
|
|
- .base_pfn = __phys_to_pfn(nsio->res.start),
|
|
|
- .reserve = __phys_to_pfn(SZ_8K),
|
|
|
+ .base_pfn = init_altmap_base(nsio->res.start),
|
|
|
+ .reserve = init_altmap_reserve(nsio->res.start),
|
|
|
};
|
|
|
|
|
|
if (!nd_pfn->uuid || !nd_pfn->ndns)
|