Re: [ovs-dev] [PATCH ovs V2 12/21] dpif-netlink: Use netdev flow put api to insert a flow

2017-01-11 Thread Joe Stringer
On 11 January 2017 at 02:20, Paul Blakey wrote: > > > On 10/01/2017 23:58, Joe Stringer wrote: >> >> On 10 January 2017 at 06:36, Paul Blakey wrote: >>> >>> >>> >>> On 06/01/2017 01:28, Joe Stringer wrote: On 25 December 2016 at 03:39, Paul

Re: [ovs-dev] [PATCH ovs V2 12/21] dpif-netlink: Use netdev flow put api to insert a flow

2017-01-11 Thread Paul Blakey
On 11/01/2017 00:34, Joe Stringer wrote: On 10 January 2017 at 07:50, Paul Blakey wrote: +nl_msg_put_u32(, OVS_ACTION_ATTR_OUTPUT, ifindex_out); +if (tnl_cfg && tnl_cfg->dst_port != 0) { +nl_msg_put_u32(, OVS_TUNNEL_KEY_ATTR_TP_DST,

Re: [ovs-dev] [PATCH ovs V2 12/21] dpif-netlink: Use netdev flow put api to insert a flow

2017-01-10 Thread Joe Stringer
On 10 January 2017 at 07:50, Paul Blakey wrote: >>> +nl_msg_put_u32(, OVS_ACTION_ATTR_OUTPUT, ifindex_out); >>> +if (tnl_cfg && tnl_cfg->dst_port != 0) { >>> +nl_msg_put_u32(, OVS_TUNNEL_KEY_ATTR_TP_DST, >>> tnl_cfg->dst_port); >>> +

Re: [ovs-dev] [PATCH ovs V2 12/21] dpif-netlink: Use netdev flow put api to insert a flow

2017-01-10 Thread Joe Stringer
On 10 January 2017 at 06:36, Paul Blakey wrote: > > > On 06/01/2017 01:28, Joe Stringer wrote: >> >> On 25 December 2016 at 03:39, Paul Blakey wrote: >>> >>> Using the new netdev flow api operate will now try and >>> offload flows to the relevant netdev of

Re: [ovs-dev] [PATCH ovs V2 12/21] dpif-netlink: Use netdev flow put api to insert a flow

2017-01-10 Thread Paul Blakey
On 06/01/2017 01:25, Joe Stringer wrote: On 25 December 2016 at 03:39, Paul Blakey wrote: Using the new netdev flow api operate will now try and offload flows to the relevant netdev of the input port. Other operate methods flows will come in later patches. Signed-off-by:

Re: [ovs-dev] [PATCH ovs V2 12/21] dpif-netlink: Use netdev flow put api to insert a flow

2017-01-10 Thread Paul Blakey
On 06/01/2017 01:28, Joe Stringer wrote: On 25 December 2016 at 03:39, Paul Blakey wrote: Using the new netdev flow api operate will now try and offload flows to the relevant netdev of the input port. Other operate methods flows will come in later patches. Signed-off-by:

Re: [ovs-dev] [PATCH ovs V2 12/21] dpif-netlink: Use netdev flow put api to insert a flow

2017-01-05 Thread Joe Stringer
On 25 December 2016 at 03:39, Paul Blakey wrote: > Using the new netdev flow api operate will now try and > offload flows to the relevant netdev of the input port. > Other operate methods flows will come in later patches. > > Signed-off-by: Paul Blakey >

Re: [ovs-dev] [PATCH ovs V2 12/21] dpif-netlink: Use netdev flow put api to insert a flow

2017-01-05 Thread Joe Stringer
On 25 December 2016 at 03:39, Paul Blakey wrote: > Using the new netdev flow api operate will now try and > offload flows to the relevant netdev of the input port. > Other operate methods flows will come in later patches. > > Signed-off-by: Paul Blakey >

[ovs-dev] [PATCH ovs V2 12/21] dpif-netlink: Use netdev flow put api to insert a flow

2016-12-25 Thread Paul Blakey
Using the new netdev flow api operate will now try and offload flows to the relevant netdev of the input port. Other operate methods flows will come in later patches. Signed-off-by: Paul Blakey Reviewed-by: Roi Dayan --- lib/dpif-netlink.c | 232