OVS ingress policing is implemented via act_police tc action. Similarly to HTB in BZ 2137619, act_police is getting the main rate/ceil configuration via 'struct tc_ratespec'. This structure holds a 32bit rate field that reflects bytes per second. So, the maximum value is ~34 G bits per second. Again, similarly to HTB, act_police has dedicated netlink attributes TCA_POLICE_RATE64 and TCA_POLICE_PEAKRATE64 that can be used to break the 32bit barrier. It makes sense to add support for these attributes to be able to configure higher speeds since modern NICs can be much faster than the current limit.