diff options
Diffstat (limited to 'mm/page_cgroup.c')
| -rw-r--r-- | mm/page_cgroup.c | 19 | 
1 files changed, 10 insertions, 9 deletions
diff --git a/mm/page_cgroup.c b/mm/page_cgroup.c index 6d757e3a872..3708264d283 100644 --- a/mm/page_cgroup.c +++ b/mm/page_cgroup.c @@ -54,8 +54,9 @@ static int __init alloc_node_page_cgroup(int nid)  	table_size = sizeof(struct page_cgroup) * nr_pages; -	base = __alloc_bootmem_node_nopanic(NODE_DATA(nid), -			table_size, PAGE_SIZE, __pa(MAX_DMA_ADDRESS)); +	base = memblock_virt_alloc_try_nid_nopanic( +			table_size, PAGE_SIZE, __pa(MAX_DMA_ADDRESS), +			BOOTMEM_ALLOC_ACCESSIBLE, nid);  	if (!base)  		return -ENOMEM;  	NODE_DATA(nid)->node_page_cgroup = base; @@ -174,7 +175,7 @@ static void free_page_cgroup(void *addr)  	}  } -void __free_page_cgroup(unsigned long pfn) +static void __free_page_cgroup(unsigned long pfn)  {  	struct mem_section *ms;  	struct page_cgroup *base; @@ -187,9 +188,9 @@ void __free_page_cgroup(unsigned long pfn)  	ms->page_cgroup = NULL;  } -int __meminit online_page_cgroup(unsigned long start_pfn, -			unsigned long nr_pages, -			int nid) +static int __meminit online_page_cgroup(unsigned long start_pfn, +				unsigned long nr_pages, +				int nid)  {  	unsigned long start, end, pfn;  	int fail = 0; @@ -222,8 +223,8 @@ int __meminit online_page_cgroup(unsigned long start_pfn,  	return -ENOMEM;  } -int __meminit offline_page_cgroup(unsigned long start_pfn, -		unsigned long nr_pages, int nid) +static int __meminit offline_page_cgroup(unsigned long start_pfn, +				unsigned long nr_pages, int nid)  {  	unsigned long start, end, pfn; @@ -451,7 +452,7 @@ unsigned short swap_cgroup_record(swp_entry_t ent, unsigned short id)   * lookup_swap_cgroup_id - lookup mem_cgroup id tied to swap entry   * @ent: swap entry to be looked up.   * - * Returns CSS ID of mem_cgroup at success. 0 at failure. (0 is invalid ID) + * Returns ID of mem_cgroup at success. 0 at failure. (0 is invalid ID)   */  unsigned short lookup_swap_cgroup_id(swp_entry_t ent)  {  | 
