net: thunderx: Fix memory leak while tearing down interface
Fixed 'tso_hdrs' memory not being freed properly. Also fixed SQ skbuff maintenance issues. Signed-off-by: Sunil Goutham <sgoutham@cavium.com> Signed-off-by: Aleksey Makarov <aleksey.makarov@caviumnetworks.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4b561c17d9
commit
143ceb0b8a
|
@ -425,6 +425,7 @@ static void nicvf_snd_pkt_handler(struct net_device *netdev,
|
||||||
if (skb) {
|
if (skb) {
|
||||||
prefetch(skb);
|
prefetch(skb);
|
||||||
dev_consume_skb_any(skb);
|
dev_consume_skb_any(skb);
|
||||||
|
sq->skbuff[cqe_tx->sqe_ptr] = (u64)NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -382,7 +382,8 @@ static void nicvf_free_snd_queue(struct nicvf *nic, struct snd_queue *sq)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (sq->tso_hdrs)
|
if (sq->tso_hdrs)
|
||||||
dma_free_coherent(&nic->pdev->dev, sq->dmem.q_len,
|
dma_free_coherent(&nic->pdev->dev,
|
||||||
|
sq->dmem.q_len * TSO_HEADER_SIZE,
|
||||||
sq->tso_hdrs, sq->tso_hdrs_phys);
|
sq->tso_hdrs, sq->tso_hdrs_phys);
|
||||||
|
|
||||||
kfree(sq->skbuff);
|
kfree(sq->skbuff);
|
||||||
|
@ -863,10 +864,11 @@ void nicvf_sq_free_used_descs(struct net_device *netdev, struct snd_queue *sq,
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
skb = (struct sk_buff *)sq->skbuff[sq->head];
|
skb = (struct sk_buff *)sq->skbuff[sq->head];
|
||||||
|
if (skb)
|
||||||
|
dev_kfree_skb_any(skb);
|
||||||
atomic64_add(1, (atomic64_t *)&netdev->stats.tx_packets);
|
atomic64_add(1, (atomic64_t *)&netdev->stats.tx_packets);
|
||||||
atomic64_add(hdr->tot_len,
|
atomic64_add(hdr->tot_len,
|
||||||
(atomic64_t *)&netdev->stats.tx_bytes);
|
(atomic64_t *)&netdev->stats.tx_bytes);
|
||||||
dev_kfree_skb_any(skb);
|
|
||||||
nicvf_put_sq_desc(sq, hdr->subdesc_cnt + 1);
|
nicvf_put_sq_desc(sq, hdr->subdesc_cnt + 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1048,7 +1050,7 @@ static int nicvf_sq_append_tso(struct nicvf *nic, struct snd_queue *sq,
|
||||||
}
|
}
|
||||||
nicvf_sq_add_hdr_subdesc(sq, hdr_qentry,
|
nicvf_sq_add_hdr_subdesc(sq, hdr_qentry,
|
||||||
seg_subdescs - 1, skb, seg_len);
|
seg_subdescs - 1, skb, seg_len);
|
||||||
sq->skbuff[hdr_qentry] = 0;
|
sq->skbuff[hdr_qentry] = (u64)NULL;
|
||||||
qentry = nicvf_get_nxt_sqentry(sq, qentry);
|
qentry = nicvf_get_nxt_sqentry(sq, qentry);
|
||||||
|
|
||||||
desc_cnt += seg_subdescs;
|
desc_cnt += seg_subdescs;
|
||||||
|
|
Loading…
Reference in New Issue