ice: use bitmap_free instead of devm_kfree
[ Upstream commit 59ac325557b6c14f1f793b90d3946bc145ffa085 ]
pf->avail_txqs was allocated using bitmap_zalloc, bitmap_free should be
used to free this memory.
Fixes: 78b5713ac1
("ice: Alloc queue management bitmaps and arrays dynamically")
Signed-off-by: Michal Swiatkowski <michal.swiatkowski@linux.intel.com>
Tested-by: Gurucharan <gurucharanx.g@intel.com> (A Contingent worker at Intel)
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
22922da737
commit
9d11d06e50
@@ -3404,7 +3404,7 @@ static int ice_init_pf(struct ice_pf *pf)
|
|||||||
|
|
||||||
pf->avail_rxqs = bitmap_zalloc(pf->max_pf_rxqs, GFP_KERNEL);
|
pf->avail_rxqs = bitmap_zalloc(pf->max_pf_rxqs, GFP_KERNEL);
|
||||||
if (!pf->avail_rxqs) {
|
if (!pf->avail_rxqs) {
|
||||||
devm_kfree(ice_pf_to_dev(pf), pf->avail_txqs);
|
bitmap_free(pf->avail_txqs);
|
||||||
pf->avail_txqs = NULL;
|
pf->avail_txqs = NULL;
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user