diff options
| author | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-01-13 15:00:22 +0000 | 
|---|---|---|
| committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-01-13 15:00:22 +0000 | 
| commit | 4de3a8e101150feaefa1139611a50ff37467f33e (patch) | |
| tree | daada742542518b02d7db7c5d32e715eaa5f166d /arch/powerpc/mm/numa.c | |
| parent | 294064f58953f9964e5945424b09c51800330a83 (diff) | |
| parent | 099469502f62fbe0d7e4f0b83a2f22538367f734 (diff) | |
| download | olio-linux-3.10-4de3a8e101150feaefa1139611a50ff37467f33e.tar.xz olio-linux-3.10-4de3a8e101150feaefa1139611a50ff37467f33e.zip  | |
Merge branch 'master' into fixes
Diffstat (limited to 'arch/powerpc/mm/numa.c')
| -rw-r--r-- | arch/powerpc/mm/numa.c | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/powerpc/mm/numa.c b/arch/powerpc/mm/numa.c index c0189c169bb..3feefc3842a 100644 --- a/arch/powerpc/mm/numa.c +++ b/arch/powerpc/mm/numa.c @@ -58,7 +58,7 @@ static int distance_lookup_table[MAX_NUMNODES][MAX_DISTANCE_REF_POINTS];   * Allocate node_to_cpumask_map based on number of available nodes   * Requires node_possible_map to be valid.   * - * Note: node_to_cpumask() is not valid until after this is done. + * Note: cpumask_of_node() is not valid until after this is done.   */  static void __init setup_node_to_cpumask_map(void)  { @@ -501,7 +501,7 @@ static int of_get_assoc_arrays(struct device_node *memory,  	aa->n_arrays = *prop++;  	aa->array_sz = *prop++; -	/* Now that we know the number of arrrays and size of each array, +	/* Now that we know the number of arrays and size of each array,  	 * revalidate the size of the property read in.  	 */  	if (len < (aa->n_arrays * aa->array_sz + 2) * sizeof(unsigned int)) @@ -1440,7 +1440,7 @@ int arch_update_cpu_topology(void)  {  	int cpu, nid, old_nid;  	unsigned int associativity[VPHN_ASSOC_BUFSIZE] = {0}; -	struct sys_device *sysdev; +	struct device *dev;  	for_each_cpu(cpu,&cpu_associativity_changes_mask) {  		vphn_get_associativity(cpu, associativity); @@ -1461,9 +1461,9 @@ int arch_update_cpu_topology(void)  		register_cpu_under_node(cpu, nid);  		put_online_cpus(); -		sysdev = get_cpu_sysdev(cpu); -		if (sysdev) -			kobject_uevent(&sysdev->kobj, KOBJ_CHANGE); +		dev = get_cpu_device(cpu); +		if (dev) +			kobject_uevent(&dev->kobj, KOBJ_CHANGE);  	}  	return 1;  |