Re: [ovs-dev] [packet_in 12/13] ofproto-dpif: Implement PACKET_IN in userspace.

2012-01-03 Thread Ben Pfaff
On Tue, Jan 03, 2012 at 10:50:16AM -0800, Ethan Jackson wrote: > I decided to add a patch which masks out the CFI bit in eth_push_vlan(). > It will be included when I resend the series. > > Here is an incremental. Incremental looks fine, thanks. ___ dev

Re: [ovs-dev] [packet_in 12/13] ofproto-dpif: Implement PACKET_IN in userspace.

2012-01-03 Thread Ethan Jackson
I decided to add a patch which masks out the CFI bit in eth_push_vlan(). It will be included when I resend the series. Here is an incremental. --- ofproto/ofproto-dpif.c | 24 ++-- 1 files changed, 14 insertions(+), 10 deletions(-) diff --git a/ofproto/ofproto-dpif.c b/ofp

Re: [ovs-dev] [packet_in 12/13] ofproto-dpif: Implement PACKET_IN in userspace.

2012-01-02 Thread Ben Pfaff
On Wed, Dec 28, 2011 at 05:52:39PM -0800, Ethan Jackson wrote: > In future patches, PACKET_IN messages will include meta-data which > is only available in userspace during action translation. Either, > this data needs to be stored until it's required by a userspace > datapath action, or the PACKET

[ovs-dev] [packet_in 12/13] ofproto-dpif: Implement PACKET_IN in userspace.

2011-12-28 Thread Ethan Jackson
In future patches, PACKET_IN messages will include meta-data which is only available in userspace during action translation. Either, this data needs to be stored until it's required by a userspace datapath action, or the PACKET_IN messages must be sent at the time the data is available. This patc