[dpdk-dev] [PATCH] eal: Fix wrong resource release of pci_uio_unmap()

2016-06-15 Thread David Marchand
On Wed, Jun 15, 2016 at 5:27 AM, Tetsuya Mukawa wrote: > The 'path' member of mapped_pci_resource structure is allocated by > primary process, but currenctly it will be freed by both primary > and secondary process. > The patch fixes to be freed by only primary process. > > Signed-off-by: Tetsuya

[dpdk-dev] [PATCH] eal: Fix wrong resource release of pci_uio_unmap()

2016-06-15 Thread Tetsuya Mukawa
The 'path' member of mapped_pci_resource structure is allocated by primary process, but currenctly it will be freed by both primary and secondary process. The patch fixes to be freed by only primary process. Signed-off-by: Tetsuya Mukawa --- lib/librte_eal/common/eal_common_pci_uio.c | 4 +++- 1