diff options
Diffstat (limited to 'arch/ia64/kernel/topology.c')
| -rw-r--r-- | arch/ia64/kernel/topology.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/ia64/kernel/topology.c b/arch/ia64/kernel/topology.c index d76529cbff20..9b820f7a6a98 100644 --- a/arch/ia64/kernel/topology.c +++ b/arch/ia64/kernel/topology.c @@ -85,7 +85,7 @@ static int __init topology_init(void)  	}  #endif -	sysfs_cpus = kzalloc(sizeof(struct ia64_cpu) * NR_CPUS, GFP_KERNEL); +	sysfs_cpus = kcalloc(NR_CPUS, sizeof(struct ia64_cpu), GFP_KERNEL);  	if (!sysfs_cpus)  		panic("kzalloc in topology_init failed - NR_CPUS too big?"); @@ -319,8 +319,8 @@ static int cpu_cache_sysfs_init(unsigned int cpu)  		return -1;  	} -	this_cache=kzalloc(sizeof(struct cache_info)*unique_caches, -			GFP_KERNEL); +	this_cache=kcalloc(unique_caches, sizeof(struct cache_info), +			   GFP_KERNEL);  	if (this_cache == NULL)  		return -ENOMEM;  | 
