diff options
Diffstat (limited to 'drivers/net/pptp.c')
-rw-r--r-- | drivers/net/pptp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/pptp.c b/drivers/net/pptp.c index ccbc91326bfa..7556a9224f72 100644 --- a/drivers/net/pptp.c +++ b/drivers/net/pptp.c | |||
@@ -673,8 +673,7 @@ static int __init pptp_init_module(void) | |||
673 | int err = 0; | 673 | int err = 0; |
674 | pr_info("PPTP driver version " PPTP_DRIVER_VERSION "\n"); | 674 | pr_info("PPTP driver version " PPTP_DRIVER_VERSION "\n"); |
675 | 675 | ||
676 | callid_sock = __vmalloc((MAX_CALLID + 1) * sizeof(void *), | 676 | callid_sock = vzalloc((MAX_CALLID + 1) * sizeof(void *)); |
677 | GFP_KERNEL | __GFP_ZERO, PAGE_KERNEL); | ||
678 | if (!callid_sock) { | 677 | if (!callid_sock) { |
679 | pr_err("PPTP: cann't allocate memory\n"); | 678 | pr_err("PPTP: cann't allocate memory\n"); |
680 | return -ENOMEM; | 679 | return -ENOMEM; |