Re: [ovs-dev] [PATCH] net: openvswitch: Support masked set actions.

2015-02-05 Thread Jarno Rajahalme
Sorry for not remembering about these… On Dec 10, 2014, at 6:03 PM, Jesse Gross wrote: > On Tue, Dec 9, 2014 at 4:10 PM, Jarno Rajahalme wrote: >> diff --git a/net/openvswitch/flow_netlink.c b/net/openvswitch/flow_netlink.c >> index df3c7f2..276bb60 100644 >> --- a/net/openvswitch/flow_netlink.

Re: [ovs-dev] [PATCH] net: openvswitch: Support masked set actions.

2015-01-22 Thread Pravin Shelar
On Tue, Dec 9, 2014 at 4:10 PM, Jarno Rajahalme wrote: > OVS userspace already probes the openvswitch kernel module for > OVS_ACTION_ATTR_SET_MASKED support. This patch adds the kernel module > implementation of masked set actions. > > The existing set action sets many fields at once. When only

Re: [ovs-dev] [PATCH] net: openvswitch: Support masked set actions.

2014-12-10 Thread Jesse Gross
On Wed, Dec 10, 2014 at 12:03 PM, Jarno Rajahalme wrote: > > On Dec 10, 2014, at 11:48 AM, David Miller wrote: > >> From: Jarno Rajahalme >> Date: Tue, 9 Dec 2014 16:10:25 -0800 >> >>> OVS userspace already probes the openvswitch kernel module for >>> OVS_ACTION_ATTR_SET_MASKED support. This p

Re: [ovs-dev] [PATCH] net: openvswitch: Support masked set actions.

2014-12-10 Thread Jesse Gross
On Tue, Dec 9, 2014 at 4:10 PM, Jarno Rajahalme wrote: > diff --git a/net/openvswitch/flow_netlink.c b/net/openvswitch/flow_netlink.c > index df3c7f2..276bb60 100644 > --- a/net/openvswitch/flow_netlink.c > +++ b/net/openvswitch/flow_netlink.c > @@ -2007,6 +2117,18 @@ int ovs_nla_put_actions(const

Re: [ovs-dev] [PATCH] net: openvswitch: Support masked set actions.

2014-12-10 Thread Jarno Rajahalme
On Dec 10, 2014, at 11:48 AM, David Miller wrote: > From: Jarno Rajahalme > Date: Tue, 9 Dec 2014 16:10:25 -0800 > >> OVS userspace already probes the openvswitch kernel module for >> OVS_ACTION_ATTR_SET_MASKED support. This patch adds the kernel module >> implementation of masked set action

Re: [ovs-dev] [PATCH] net: openvswitch: Support masked set actions.

2014-12-10 Thread David Miller
From: Jarno Rajahalme Date: Tue, 9 Dec 2014 16:10:25 -0800 > OVS userspace already probes the openvswitch kernel module for > OVS_ACTION_ATTR_SET_MASKED support. This patch adds the kernel module > implementation of masked set actions. > > The existing set action sets many fields at once. Whe