Re: [ovs-dev] [PATCH 7/7] netdev-linux: support 64-bit rates in tc policing

2023-05-04 Thread Ilya Maximets
On 4/21/23 17:16, Adrian Moreno wrote: > Use TCA_POLICE_RATE64 if the rate cannot be expressed using 32bits. > > This breaks the 32Gbps barrier. The new barrier is ~4Tbps caused by > netdev's API expressing kbps rates using 32-bit integers. > > Reported-at: https://bugzilla.redhat.com/show_bug.cg

Re: [ovs-dev] [PATCH 7/7] netdev-linux: support 64-bit rates in tc policing

2023-04-26 Thread Simon Horman
On Fri, Apr 21, 2023 at 05:16:51PM +0200, Adrian Moreno wrote: > Use TCA_POLICE_RATE64 if the rate cannot be expressed using 32bits. > > This breaks the 32Gbps barrier. The new barrier is ~4Tbps caused by > netdev's API expressing kbps rates using 32-bit integers. > > Reported-at: https://bugzill

[ovs-dev] [PATCH 7/7] netdev-linux: support 64-bit rates in tc policing

2023-04-21 Thread Adrian Moreno
Use TCA_POLICE_RATE64 if the rate cannot be expressed using 32bits. This breaks the 32Gbps barrier. The new barrier is ~4Tbps caused by netdev's API expressing kbps rates using 32-bit integers. Reported-at: https://bugzilla.redhat.com/show_bug.cgi?id=2137643 Signed-off-by: Adrian Moreno --- lib