Re: [ovs-dev] [recirc datapath V3 RFC 2/2] datapath: add recirc action

2014-04-17 Thread Jesse Gross
On Wed, Apr 16, 2014 at 11:49 PM, Andy Zhou wrote: > diff --git a/datapath/actions.c b/datapath/actions.c > index 820075f..9307ee1 100644 > --- a/datapath/actions.c > +++ b/datapath/actions.c > +static int execute_recirc(struct datapath *dp, struct sk_buff *skb, > +

[ovs-dev] [recirc datapath V3 RFC 2/2] datapath: add recirc action

2014-04-16 Thread Andy Zhou
Recirculation implementation for Linux kernel data path. Signed-off-by: Andy Zhou --- V2 -> v3: * save the input port in OVS_CB * Allow recirc_id to be masked like any other key attribute. * DO not force recirc_id to be exact match. * Needs corresponding user sp