Re: [dpdk-dev] [PATCH 1/1] net/enic: enic driver doesn't work with 2nd process

2019-09-01 Thread Hyong Youb Kim (hyonkim)
> -Original Message- > From: dev On Behalf Of dirk > Sent: Tuesday, August 27, 2019 6:03 PM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH 1/1] net/enic: enic driver doesn't work with 2nd > process > > net/enic: enic driver doesn't work with 2n

[dpdk-dev] [PATCH 1/1] net/enic: enic driver doesn't work with 2nd process

2019-08-27 Thread dirk
net/enic: enic driver doesn't work with 2nd process. the problem is that the private data structure enic uses pointers to rte_eth_dev and rte_pci_device which are overwritten when a 2nd process starts using this device. given patch removes these two pointers from the private data and uses the corre

[dpdk-dev] [PATCH 1/1] net/enic: enic driver doesn't work with 2nd process

2019-08-27 Thread dirk
Signed-off-by: dirk --- drivers/net/enic/enic.h | 36 --- drivers/net/enic/enic_clsf.c | 5 +- drivers/net/enic/enic_ethdev.c| 79 ++- drivers/net/enic/enic_main.c | 177 +++--- drivers/net/enic/enic_res.c