mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 18:41:00 +07:00
bnx2: no need to check before vfreeing
There is no need to check if a pointer is NULL before calling vfree(), since vfree() function already check for it. Signed-off-by: Breno Leitão <leitao@linux.vnet.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
3d8fd38567
commit
25b0b999fb
@ -546,8 +546,7 @@ bnx2_free_rx_mem(struct bnx2 *bp)
|
||||
rxr->rx_desc_mapping[j]);
|
||||
rxr->rx_desc_ring[j] = NULL;
|
||||
}
|
||||
if (rxr->rx_buf_ring)
|
||||
vfree(rxr->rx_buf_ring);
|
||||
vfree(rxr->rx_buf_ring);
|
||||
rxr->rx_buf_ring = NULL;
|
||||
|
||||
for (j = 0; j < bp->rx_max_pg_ring; j++) {
|
||||
@ -557,8 +556,7 @@ bnx2_free_rx_mem(struct bnx2 *bp)
|
||||
rxr->rx_pg_desc_mapping[j]);
|
||||
rxr->rx_pg_desc_ring[j] = NULL;
|
||||
}
|
||||
if (rxr->rx_pg_ring)
|
||||
vfree(rxr->rx_pg_ring);
|
||||
vfree(rxr->rx_pg_ring);
|
||||
rxr->rx_pg_ring = NULL;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user