| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * linux/mm/allocpercpu.c | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-07-04 09:59:22 -07:00
										 |  |  |  * Separated from slab.c August 11, 2006 Christoph Lameter | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  |  */ | 
					
						
							|  |  |  | #include <linux/mm.h>
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-04 14:28:35 -08:00
										 |  |  | #ifndef cache_line_size
 | 
					
						
							|  |  |  | #define cache_line_size()	L1_CACHE_BYTES
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * percpu_depopulate - depopulate per-cpu data for given cpu | 
					
						
							|  |  |  |  * @__pdata: per-cpu data to depopulate | 
					
						
							|  |  |  |  * @cpu: depopulate per-cpu data for this cpu | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Depopulating per-cpu data for a cpu going offline would be a typical | 
					
						
							|  |  |  |  * use case. You need to register a cpu hotplug handler for that purpose. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-07-25 19:46:23 -07:00
										 |  |  | static void percpu_depopulate(void *__pdata, int cpu) | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct percpu_data *pdata = __percpu_disguise(__pdata); | 
					
						
							| 
									
										
										
										
											2006-12-06 20:32:37 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	kfree(pdata->ptrs[cpu]); | 
					
						
							|  |  |  | 	pdata->ptrs[cpu] = NULL; | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * percpu_depopulate_mask - depopulate per-cpu data for some cpu's | 
					
						
							|  |  |  |  * @__pdata: per-cpu data to depopulate | 
					
						
							|  |  |  |  * @mask: depopulate per-cpu data for cpu's selected through mask bits | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-07-25 19:46:23 -07:00
										 |  |  | static void __percpu_depopulate_mask(void *__pdata, cpumask_t *mask) | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	int cpu; | 
					
						
							| 
									
										
										
										
											2008-05-12 21:21:13 +02:00
										 |  |  | 	for_each_cpu_mask_nr(cpu, *mask) | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | 		percpu_depopulate(__pdata, cpu); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-07-25 19:46:23 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define percpu_depopulate_mask(__pdata, mask) \
 | 
					
						
							|  |  |  | 	__percpu_depopulate_mask((__pdata), &(mask)) | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * percpu_populate - populate per-cpu data for given cpu | 
					
						
							|  |  |  |  * @__pdata: per-cpu data to populate further | 
					
						
							|  |  |  |  * @size: size of per-cpu object | 
					
						
							|  |  |  |  * @gfp: may sleep or not etc. | 
					
						
							|  |  |  |  * @cpu: populate per-data for this cpu | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Populating per-cpu data for a cpu coming online would be a typical | 
					
						
							|  |  |  |  * use case. You need to register a cpu hotplug handler for that purpose. | 
					
						
							|  |  |  |  * Per-cpu object is populated with zeroed buffer. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-07-25 19:46:23 -07:00
										 |  |  | static void *percpu_populate(void *__pdata, size_t size, gfp_t gfp, int cpu) | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct percpu_data *pdata = __percpu_disguise(__pdata); | 
					
						
							|  |  |  | 	int node = cpu_to_node(cpu); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-04 14:28:35 -08:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * We should make sure each CPU gets private memory. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	size = roundup(size, cache_line_size()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | 	BUG_ON(pdata->ptrs[cpu]); | 
					
						
							| 
									
										
										
										
											2007-07-17 04:03:29 -07:00
										 |  |  | 	if (node_online(node)) | 
					
						
							|  |  |  | 		pdata->ptrs[cpu] = kmalloc_node(size, gfp|__GFP_ZERO, node); | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | 		pdata->ptrs[cpu] = kzalloc(size, gfp); | 
					
						
							|  |  |  | 	return pdata->ptrs[cpu]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * percpu_populate_mask - populate per-cpu data for more cpu's | 
					
						
							|  |  |  |  * @__pdata: per-cpu data to populate further | 
					
						
							|  |  |  |  * @size: size of per-cpu object | 
					
						
							|  |  |  |  * @gfp: may sleep or not etc. | 
					
						
							|  |  |  |  * @mask: populate per-cpu data for cpu's selected through mask bits | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Per-cpu objects are populated with zeroed buffers. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-07-25 19:46:23 -07:00
										 |  |  | static int __percpu_populate_mask(void *__pdata, size_t size, gfp_t gfp, | 
					
						
							|  |  |  | 				  cpumask_t *mask) | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-04-04 18:11:12 -07:00
										 |  |  | 	cpumask_t populated; | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | 	int cpu; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-04 18:11:12 -07:00
										 |  |  | 	cpus_clear(populated); | 
					
						
							| 
									
										
										
										
											2008-05-12 21:21:13 +02:00
										 |  |  | 	for_each_cpu_mask_nr(cpu, *mask) | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | 		if (unlikely(!percpu_populate(__pdata, size, gfp, cpu))) { | 
					
						
							|  |  |  | 			__percpu_depopulate_mask(__pdata, &populated); | 
					
						
							|  |  |  | 			return -ENOMEM; | 
					
						
							|  |  |  | 		} else | 
					
						
							|  |  |  | 			cpu_set(cpu, populated); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-07-25 19:46:23 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define percpu_populate_mask(__pdata, size, gfp, mask) \
 | 
					
						
							|  |  |  | 	__percpu_populate_mask((__pdata), (size), (gfp), &(mask)) | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2009-02-20 16:29:08 +09:00
										 |  |  |  * alloc_percpu - initial setup of per-cpu data | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  |  * @size: size of per-cpu object | 
					
						
							| 
									
										
										
										
											2009-02-20 16:29:08 +09:00
										 |  |  |  * @align: alignment | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-02-20 16:29:08 +09:00
										 |  |  |  * Allocate dynamic percpu area.  Percpu objects are populated with | 
					
						
							|  |  |  |  * zeroed buffers. | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-02-20 16:29:08 +09:00
										 |  |  | void *__alloc_percpu(size_t size, size_t align) | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-03-04 14:28:35 -08:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * We allocate whole cache lines to avoid false sharing | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	size_t sz = roundup(nr_cpu_ids * sizeof(void *), cache_line_size()); | 
					
						
							| 
									
										
										
										
											2009-02-20 16:29:08 +09:00
										 |  |  | 	void *pdata = kzalloc(sz, GFP_KERNEL); | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | 	void *__pdata = __percpu_disguise(pdata); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-20 16:29:08 +09:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Can't easily make larger alignment work with kmalloc.  WARN | 
					
						
							|  |  |  | 	 * on it.  Larger alignment should only be used for module | 
					
						
							|  |  |  | 	 * percpu sections on SMP for which this path isn't used. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2009-03-11 14:36:54 +09:00
										 |  |  | 	WARN_ON_ONCE(align > SMP_CACHE_BYTES); | 
					
						
							| 
									
										
										
										
											2009-02-20 16:29:08 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | 	if (unlikely(!pdata)) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2009-02-20 16:29:08 +09:00
										 |  |  | 	if (likely(!__percpu_populate_mask(__pdata, size, GFP_KERNEL, | 
					
						
							|  |  |  | 					   &cpu_possible_map))) | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | 		return __pdata; | 
					
						
							|  |  |  | 	kfree(pdata); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-02-20 16:29:08 +09:00
										 |  |  | EXPORT_SYMBOL_GPL(__alloc_percpu); | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2009-02-20 16:29:08 +09:00
										 |  |  |  * free_percpu - final cleanup of per-cpu data | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  |  * @__pdata: object to clean up | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * We simply clean up any per-cpu object left. No need for the client to | 
					
						
							|  |  |  |  * track and specify through a bis mask which per-cpu objects are to free. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-02-20 16:29:08 +09:00
										 |  |  | void free_percpu(void *__pdata) | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-12-06 20:32:37 -08:00
										 |  |  | 	if (unlikely(!__pdata)) | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2006-09-25 23:31:50 -07:00
										 |  |  | 	__percpu_depopulate_mask(__pdata, &cpu_possible_map); | 
					
						
							|  |  |  | 	kfree(__percpu_disguise(__pdata)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-02-20 16:29:08 +09:00
										 |  |  | EXPORT_SYMBOL_GPL(free_percpu); |