diff options
Diffstat (limited to 'lib/test_vmalloc.c')
| -rw-r--r-- | lib/test_vmalloc.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/test_vmalloc.c b/lib/test_vmalloc.c index 9dd9745d365f..3718d9886407 100644 --- a/lib/test_vmalloc.c +++ b/lib/test_vmalloc.c @@ -369,7 +369,7 @@ vm_map_ram_test(void)  	int i;  	map_nr_pages = nr_pages > 0 ? nr_pages:1; -	pages = kmalloc(map_nr_pages * sizeof(struct page), GFP_KERNEL); +	pages = kcalloc(map_nr_pages, sizeof(struct page *), GFP_KERNEL);  	if (!pages)  		return -1;  | 
