mirror of
https://github.com/openvswitch/ovs
synced 2025-09-05 00:35:33 +00:00
netdev-dpdk: Avoid reconfiguration on VIRTIO_NET_F_MQ changes.
At the moment, a malicious guest might negotiate VIRTIO_NET_F_MQ and !VIRTIO_NET_F_MQ in a loop which would be seen as qp_num going from 1 to n and n to 1 continuously, triggering datapath reconfigurations at each transition. Limit this by only reconfiguring on increased qp_num. The previous patch reduced the observed cost of polling disabled queues, so the only cost is memory. Co-authored-by: Ilya Maximets <i.maximets@samsung.com> Signed-off-by: Ilya Maximets <i.maximets@samsung.com> Signed-off-by: David Marchand <david.marchand@redhat.com> Acked-by: Kevin Traynor <ktraynor@redhat.com> Signed-off-by: Ian Stokes <ian.stokes@intel.com>
This commit is contained in:
committed by
Ian Stokes
parent
35c91567c8
commit
7235cd206e
@@ -3512,8 +3512,8 @@ new_device(int vid)
|
||||
newnode = dev->socket_id;
|
||||
}
|
||||
|
||||
if (dev->requested_n_txq != qp_num
|
||||
|| dev->requested_n_rxq != qp_num
|
||||
if (dev->requested_n_txq < qp_num
|
||||
|| dev->requested_n_rxq < qp_num
|
||||
|| dev->requested_socket_id != newnode) {
|
||||
dev->requested_socket_id = newnode;
|
||||
dev->requested_n_rxq = qp_num;
|
||||
|
Reference in New Issue
Block a user