]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
bnxt_en: allocate enough space for ->ntp_fltr_bmap
authorDan Carpenter <dan.carpenter@oracle.com>
Sat, 6 May 2017 00:49:01 +0000 (03:49 +0300)
committerSeth Forshee <seth.forshee@canonical.com>
Mon, 15 May 2017 20:39:25 +0000 (15:39 -0500)
BugLink: http://bugs.launchpad.net/bugs/1690814
[ Upstream commit ac45bd93a5035c2f39c9862b8b6ed692db0fdc87 ]

We have the number of longs, but we need to calculate the number of
bytes required.

Fixes: c0c050c58d84 ("bnxt_en: New Broadcom ethernet driver.")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Michael Chan <michael.chan@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
drivers/net/ethernet/broadcom/bnxt/bnxt.c

index 1f1e54ba0ecb31ffd053161e458b4d6817cb510b..2c02a4cebc24ff8e1cfad1544a79d2f4d7f83572 100644 (file)
@@ -3000,7 +3000,8 @@ static int bnxt_alloc_ntp_fltrs(struct bnxt *bp)
                INIT_HLIST_HEAD(&bp->ntp_fltr_hash_tbl[i]);
 
        bp->ntp_fltr_count = 0;
-       bp->ntp_fltr_bmap = kzalloc(BITS_TO_LONGS(BNXT_NTP_FLTR_MAX_FLTR),
+       bp->ntp_fltr_bmap = kcalloc(BITS_TO_LONGS(BNXT_NTP_FLTR_MAX_FLTR),
+                                   sizeof(long),
                                    GFP_KERNEL);
 
        if (!bp->ntp_fltr_bmap)