Re: [ovs-dev] [PATCH] lib/tc: Fix flow dump for tunnel id equal zero

2019-11-04 Thread Simon Horman
On Sun, Nov 03, 2019 at 08:08:00AM +, Roi Dayan wrote: > > > On 2019-11-02 1:27 PM, Simon Horman wrote: > > On Fri, Nov 01, 2019 at 03:54:49PM +0100, Simon Horman wrote: > >> On Wed, Oct 30, 2019 at 02:40:35PM +0200, Roi Dayan wrote: > >>> From: Dmytro Linkin > >>> > >>> Tunnel id 0 is not

Re: [ovs-dev] [PATCH] lib/tc: Fix flow dump for tunnel id equal zero

2019-11-03 Thread Roi Dayan
On 2019-11-02 1:27 PM, Simon Horman wrote: > On Fri, Nov 01, 2019 at 03:54:49PM +0100, Simon Horman wrote: >> On Wed, Oct 30, 2019 at 02:40:35PM +0200, Roi Dayan wrote: >>> From: Dmytro Linkin >>> >>> Tunnel id 0 is not printed unless tunnel flag FLOW_TNL_F_KEY is set. >>> Fix that by always

Re: [ovs-dev] [PATCH] lib/tc: Fix flow dump for tunnel id equal zero

2019-11-02 Thread Simon Horman
On Fri, Nov 01, 2019 at 03:54:49PM +0100, Simon Horman wrote: > On Wed, Oct 30, 2019 at 02:40:35PM +0200, Roi Dayan wrote: > > From: Dmytro Linkin > > > > Tunnel id 0 is not printed unless tunnel flag FLOW_TNL_F_KEY is set. > > Fix that by always setting FLOW_TNL_F_KEY when tunnel id is valid. >

Re: [ovs-dev] [PATCH] lib/tc: Fix flow dump for tunnel id equal zero

2019-11-01 Thread Simon Horman
On Wed, Oct 30, 2019 at 02:40:35PM +0200, Roi Dayan wrote: > From: Dmytro Linkin > > Tunnel id 0 is not printed unless tunnel flag FLOW_TNL_F_KEY is set. > Fix that by always setting FLOW_TNL_F_KEY when tunnel id is valid. > > Fixes: 0227bf092ee6 ("lib/tc: Support optional tunnel id") >

[ovs-dev] [PATCH] lib/tc: Fix flow dump for tunnel id equal zero

2019-10-30 Thread Roi Dayan
From: Dmytro Linkin Tunnel id 0 is not printed unless tunnel flag FLOW_TNL_F_KEY is set. Fix that by always setting FLOW_TNL_F_KEY when tunnel id is valid. Fixes: 0227bf092ee6 ("lib/tc: Support optional tunnel id") Signed-off-by: Dmytro Linkin Reviewed-by: Roi Dayan ---