Re: [vpp-dev] Calling a C function in one plugin from another plugin?

2018-02-05 Thread Michael Lilja
to:vpp-dev-boun...@lists.fd.io] On Behalf Of Michael Lilja Sent: Monday, February 5, 2018 9:54 AM To: vpp-dev@lists.fd.io Subject: [vpp-dev] Calling a C function in one plugin from another plugin? Hi, I'm looking at using DPDK rte_flow (generic flow API) for ACL offloading. From what I can

Re: [vpp-dev] Calling a C function in one plugin from another plugin?

2018-02-05 Thread Dave Barach (dbarach)
-boun...@lists.fd.io] On Behalf Of Michael Lilja Sent: Monday, February 5, 2018 9:54 AM To: vpp-dev@lists.fd.io Subject: [vpp-dev] Calling a C function in one plugin from another plugin? Hi, I'm looking at using DPDK rte_flow (generic flow API) for ACL offloading. From what I can see th

[vpp-dev] Calling a C function in one plugin from another plugin?

2018-02-05 Thread Michael Lilja
Hi, I'm looking at using DPDK rte_flow (generic flow API) for ACL offloading. From what I can see the only option I have is to implement a v1_msg_* receiver in the DPDK plugin to accept commands from ACL via the SHMEM rings. The concern I have is that this might be in conflict with the design