mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
ionic: fix mem leak in rx_empty
The sentinel descriptor entry was getting missed in the
traverse of the ring from head to tail, so change to a
loop of 0 to the end.
Fixes: f1d2e894f1
("ionic: use index not pointer for queue tracking")
Signed-off-by: Shannon Nelson <snelson@pensando.io>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
43ecf7b46f
commit
0c32a28e24
1 changed files with 11 additions and 13 deletions
|
@ -400,22 +400,20 @@ static void ionic_rx_fill_cb(void *arg)
|
|||
void ionic_rx_empty(struct ionic_queue *q)
|
||||
{
|
||||
struct ionic_desc_info *desc_info;
|
||||
struct ionic_rxq_desc *desc;
|
||||
unsigned int i;
|
||||
u16 idx;
|
||||
struct ionic_page_info *page_info;
|
||||
unsigned int i, j;
|
||||
|
||||
idx = q->tail_idx;
|
||||
while (idx != q->head_idx) {
|
||||
desc_info = &q->info[idx];
|
||||
desc = desc_info->desc;
|
||||
desc->addr = 0;
|
||||
desc->len = 0;
|
||||
|
||||
for (i = 0; i < desc_info->npages; i++)
|
||||
ionic_rx_page_free(q, &desc_info->pages[i]);
|
||||
for (i = 0; i < q->num_descs; i++) {
|
||||
desc_info = &q->info[i];
|
||||
for (j = 0; j < IONIC_RX_MAX_SG_ELEMS + 1; j++) {
|
||||
page_info = &desc_info->pages[j];
|
||||
if (page_info->page)
|
||||
ionic_rx_page_free(q, page_info);
|
||||
}
|
||||
|
||||
desc_info->npages = 0;
|
||||
desc_info->cb = NULL;
|
||||
desc_info->cb_arg = NULL;
|
||||
idx = (idx + 1) & (q->num_descs - 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue