Re: [ovs-dev] [PATCH] dpif-netdev: Fix length calculation of netdet_flow_key.

2023-08-25 Thread Ilya Maximets
On 8/24/23 17:12, Eelco Chaudron wrote: > > > On 13 Aug 2023, at 11:08, Zhiqi Chen via dev wrote: > >> The 'len' of a netdev_flow_key initialized by netdev_flow_key_init() >> is always zero, which may cause errors when cloning a netdev_flow_key >> by netdev_flow_key_clone(). >> >> Currently the

Re: [ovs-dev] [PATCH] dpif-netdev: Fix length calculation of netdet_flow_key.

2023-08-24 Thread Eelco Chaudron
On 13 Aug 2023, at 11:08, Zhiqi Chen via dev wrote: > The 'len' of a netdev_flow_key initialized by netdev_flow_key_init() > is always zero, which may cause errors when cloning a netdev_flow_key > by netdev_flow_key_clone(). > > Currently the 'len' member of a netdev_flow_key initialized by > n

Re: [ovs-dev] [PATCH] dpif-netdev: Fix length calculation of netdet_flow_key.

2023-08-16 Thread Peng He
Hi, Eelco, No hurry, take your time! Eelco Chaudron 于2023年8月16日周三 16:43写道: > > > On 16 Aug 2023, at 4:00, Peng He wrote: > > > Hi, Eelco, > > > > could you take a look at this patch? > > Hi Peng, yes it’s on my TODO list, but it might be a while as I’m > recovering from three weeks of PTO ;) > >

Re: [ovs-dev] [PATCH] dpif-netdev: Fix length calculation of netdet_flow_key.

2023-08-16 Thread Eelco Chaudron
On 16 Aug 2023, at 4:00, Peng He wrote: > Hi, Eelco, > > could you take a look at this patch? Hi Peng, yes it’s on my TODO list, but it might be a while as I’m recovering from three weeks of PTO ;) //Eelco > > Zhiqi Chen via dev 于2023年8月13日周日 17:09写道: > >> The 'len' of a netdev_flow_key in

Re: [ovs-dev] [PATCH] dpif-netdev: Fix length calculation of netdet_flow_key.

2023-08-15 Thread Peng He
Hi, Eelco, could you take a look at this patch? Zhiqi Chen via dev 于2023年8月13日周日 17:09写道: > The 'len' of a netdev_flow_key initialized by netdev_flow_key_init() > is always zero, which may cause errors when cloning a netdev_flow_key > by netdev_flow_key_clone(). > > Currently the 'len' member o

[ovs-dev] [PATCH] dpif-netdev: Fix length calculation of netdet_flow_key.

2023-08-13 Thread Zhiqi Chen via dev
The 'len' of a netdev_flow_key initialized by netdev_flow_key_init() is always zero, which may cause errors when cloning a netdev_flow_key by netdev_flow_key_clone(). Currently the 'len' member of a netdev_flow_key initialized by netdev_flow_key_init() is not used, so this error will not cause any