Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 46ee9c14 authored by Ravikumar Nelavelli's avatar Ravikumar Nelavelli Committed by David S. Miller
Browse files

be2net: fix pmac_id[] allocation size



The allocation size must be be_max_uc() and not "be_max_uc() + 1"
Signed-off-by: default avatarRavikumar Nelavelli <ravikumar.nelavelli@emulex.com>
Signed-off-by: default avatarSathya Perla <sathya.perla@emulex.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent bdac85b5
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -3314,9 +3314,8 @@ static int be_get_config(struct be_adapter *adapter)
	if (status)
		return status;

	/* primary mac needs 1 pmac entry */
	adapter->pmac_id = kcalloc(be_max_uc(adapter) + 1, sizeof(u32),
				   GFP_KERNEL);
	adapter->pmac_id = kcalloc(be_max_uc(adapter),
				   sizeof(*adapter->pmac_id), GFP_KERNEL);
	if (!adapter->pmac_id)
		return -ENOMEM;