sched: fix subport freeing

In function rte_sched_subport_free, there is code to free all allocated
stuff related to scheduler subport.
First there are some checks, and in the end, rte_bitmap_free is called.

Now, rte_bitmap_free is a dummy function, and it just checks if
provided pointer to bitmap is valid or not. So, actual memory for
subport is not freed.

This patch fixes this by removing call to rte_bitmap_free, and
instead calling rte_free.

Fixes: d9213b829a ("sched: remove pipe params config from port level")
Cc: stable@dpdk.org

Signed-off-by: Hrvoje Habjanic <hrvoje.habjanic@zg.ht.hr>
Acked-by: Stephen Hemminger <stephen@networkplumber.org>
Acked-by: Jasvinder Singh <jasvinder.singh@intel.com>
This commit is contained in:
Hrvoje Habjanic 2020-05-26 19:24:55 +02:00 committed by Thomas Monjalon
parent 3ee6f70651
commit fbd8981cdd

View File

@ -888,7 +888,7 @@ rte_sched_subport_free(struct rte_sched_port *port,
}
}
rte_bitmap_free(subport->bmp);
rte_free(subport);
}
void