Re: [ovs-dev] [PATCH] netdev-dpdk: Create separate memory pool for each port

2017-01-17 Thread Robert Wojciechowicz
On Sun, Jan 15, 2017 at 06:14:47PM +, Stokes, Ian wrote: > > Since it's possible to delete memory pool in DPDK we can try to estimate > > better required memory size when port is reconfigured, e.g. with different > > number of rx queues. > > Thanks for the patch. > > It will need to be rebase

Re: [ovs-dev] [PATCH] netdev-dpdk: Create separate memory pool for each port

2017-01-15 Thread Stokes, Ian
> Since it's possible to delete memory pool in DPDK we can try to estimate > better required memory size when port is reconfigured, e.g. with different > number of rx queues. Thanks for the patch. It will need to be rebased for it to apply cleanly to master. I've applied the changes manually just

Re: [ovs-dev] [PATCH] netdev-dpdk: Create separate memory pool for each port

2016-12-13 Thread Robert Wojciechowicz
On Wed, Nov 09, 2016 at 08:02:49AM -0500, Robert Wojciechowicz wrote: > > Hi, > > I started working on this patch after this discussion: > https://mail.openvswitch.org/pipermail/ovs-discuss/2016-September/042643.html > > It turned out that it is not possible in OVS to allocate 64 rx queues > for

[ovs-dev] [PATCH] netdev-dpdk: Create separate memory pool for each port

2016-11-09 Thread Robert Wojciechowicz
Hi, I started working on this patch after this discussion: https://mail.openvswitch.org/pipermail/ovs-discuss/2016-September/042643.html It turned out that it is not possible in OVS to allocate 64 rx queues for two ports, so I started wondering if we can allocate this memory dynamically instead

[ovs-dev] [PATCH] netdev-dpdk: Create separate memory pool for each port

2016-11-09 Thread Robert Wojciechowicz
Since it's possible to delete memory pool in DPDK we can try to estimate better required memory size when port is reconfigured, e.g. with different number of rx queues. Signed-off-by: Robert Wojciechowicz --- lib/netdev-dpdk.c | 85 +++ 1 file