aboutsummaryrefslogtreecommitdiffstats
path: root/net/packet/af_packet.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/packet/af_packet.c')
-rw-r--r--net/packet/af_packet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c
index b6372dd128d7..422705d62b5b 100644
--- a/net/packet/af_packet.c
+++ b/net/packet/af_packet.c
@@ -2367,7 +2367,7 @@ static inline char *alloc_one_pg_vec_page(unsigned long order,
2367 * __get_free_pages failed, fall back to vmalloc 2367 * __get_free_pages failed, fall back to vmalloc
2368 */ 2368 */
2369 *flags |= PGV_FROM_VMALLOC; 2369 *flags |= PGV_FROM_VMALLOC;
2370 buffer = vmalloc((1 << order) * PAGE_SIZE); 2370 buffer = vzalloc((1 << order) * PAGE_SIZE);
2371 2371
2372 if (buffer) 2372 if (buffer)
2373 return buffer; 2373 return buffer;