[dpdk-dev] [PATCH] fix l2fwd --no-mac-updating not working issue

2021-06-28 Thread RickZhong
The original disable mac updating codes were removed by mistake. Signed-off-by: RickZhong --- examples/l2fwd/main.c | 4 1 file changed, 4 insertions(+) diff --git a/examples/l2fwd/main.c b/examples/l2fwd/main.c index 32d405e65..69d0087dc 100644 --- a/examples/l2fwd/main.c +++ b/examples

[dpdk-dev] [PATCH] mem: fix mem leak issue when attaching a PCI device without driver to DPDK

2021-06-28 Thread RickZhong
when trying to attach a PCI device without driver to DPDK, the 'dev' is malloced but not freed. Signed-off-by: RickZhong --- drivers/bus/pci/linux/pci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/bus/pci/linux/pci.c b/drivers/bus/pci/linux/pci.c index 0dc99e9cb.