Re: [PATCH v2 net-next] openvswitch: kernel datapath clone action

2018-07-07 Thread David Miller
From: Yifeng Sun Date: Mon, 2 Jul 2018 08:18:03 -0700 > Add 'clone' action to kernel datapath by using existing functions. > When actions within clone don't modify the current flow, the flow > key is not cloned before executing clone actions. > > This is a follow up patch for this incomplete wo

Re: [PATCH v2 net-next] openvswitch: kernel datapath clone action

2018-07-05 Thread Pravin Shelar
On Mon, Jul 2, 2018 at 8:18 AM, Yifeng Sun wrote: > Add 'clone' action to kernel datapath by using existing functions. > When actions within clone don't modify the current flow, the flow > key is not cloned before executing clone actions. > > This is a follow up patch for this incomplete work: > h

[PATCH v2 net-next] openvswitch: kernel datapath clone action

2018-07-02 Thread Yifeng Sun
Add 'clone' action to kernel datapath by using existing functions. When actions within clone don't modify the current flow, the flow key is not cloned before executing clone actions. This is a follow up patch for this incomplete work: https://patchwork.ozlabs.org/patch/722096/ v1 -> v2: Refactor