Re: [ovs-dev] [PATCH 5/5] netdev-dpdk: Remove alloc from packet recv.

2014-04-02 Thread Pravin Shelar
On Wed, Apr 2, 2014 at 1:00 PM, Jarno Rajahalme wrote: > > On Mar 31, 2014, at 9:43 PM, Pravin wrote: > >> From: Pravin Shelar >> >> On DPDK packet recv, ovs is given pointer to mbuf which has >> information about a packet, for example pointer to data and size. >> By moving mbuf to ofpbuf we can

Re: [ovs-dev] [PATCH 5/5] netdev-dpdk: Remove alloc from packet recv.

2014-04-02 Thread Jarno Rajahalme
On Mar 31, 2014, at 9:43 PM, Pravin wrote: > From: Pravin Shelar > > On DPDK packet recv, ovs is given pointer to mbuf which has > information about a packet, for example pointer to data and size. > By moving mbuf to ofpbuf we can let dpdk allocate ofpbuf and > pass that to ovs for processing

[ovs-dev] [PATCH 5/5] netdev-dpdk: Remove alloc from packet recv.

2014-03-31 Thread Pravin
From: Pravin Shelar On DPDK packet recv, ovs is given pointer to mbuf which has information about a packet, for example pointer to data and size. By moving mbuf to ofpbuf we can let dpdk allocate ofpbuf and pass that to ovs for processing the packet. Signed-off-by: Pravin B Shelar --- lib/netd