Re: [PATCH 2/2] virnetdevopenvswitch: Fix 'burst' value passed to ovs-vsctl

2022-01-04 Thread Martin Kletzander
On Tue, Jan 04, 2022 at 01:53:06PM +0100, Michal Privoznik wrote: As described in the previous commit, the units for 'burst' are kibibytes and not kilobytes, i.e. multiples of 1024 not 1000. Therefore, when constructing ovs-vsctl command the burst value must be multiplied by 1024 and not just 100

[PATCH 2/2] virnetdevopenvswitch: Fix 'burst' value passed to ovs-vsctl

2022-01-04 Thread Michal Privoznik
As described in the previous commit, the units for 'burst' are kibibytes and not kilobytes, i.e. multiples of 1024 not 1000. Therefore, when constructing ovs-vsctl command the burst value must be multiplied by 1024 and not just 1000. And because ovs expects this size in bits the value has to be mul