pid_namespace: pidns_get() should check task_active_pid_ns() != NULL
[platform/adaptation/renesas_rcar/renesas_kernel.git] / kernel / power / snapshot.c
index b38109e..d9f61a1 100644 (file)
@@ -637,7 +637,7 @@ __register_nosave_region(unsigned long start_pfn, unsigned long end_pfn,
                BUG_ON(!region);
        } else
                /* This allocation cannot fail */
-               region = alloc_bootmem(sizeof(struct nosave_region));
+               region = memblock_virt_alloc(sizeof(struct nosave_region), 0);
        region->start_pfn = start_pfn;
        region->end_pfn = end_pfn;
        list_add_tail(&region->list, &nosave_regions);