Re: [dpdk-dev] [PATCH] dev: don't remove devargs that are still referenced

2018-11-21 Thread Thomas Monjalon
21/11/2018 19:37, Darek Stojaczyk: > Even if a device failed to plug, it's still a device > object that references the devargs. Those devargs will > be freed automatically together with the device, but > can't be freed any earlier. Thanks for the patch. Please, be more specific about the bug. You

[dpdk-dev] [PATCH] dev: don't remove devargs that are still referenced

2018-11-21 Thread Darek Stojaczyk
Even if a device failed to plug, it's still a device object that references the devargs. Those devargs will be freed automatically together with the device, but can't be freed any earlier. Fixes: 7e8b26650146 ("eal: fix hotplug add / remove") Cc: gaetan.ri...@6wind.com Signed-off-by: Darek Stojac