Re: [ovs-dev] [PATCH V3 1/2] netdev-offload-dpdk: Fix flushing of a physdev

2023-10-09 Thread Ilya Maximets
On 6/29/23 16:08, Simon Horman wrote:
> On Sun, Jun 11, 2023 at 06:58:26PM +0300, Eli Britstein via dev wrote:
>> Vport's offloads are done on the tracked orig-in-port, but the flow itself
>> is associated in the vport's map.
>>
>> Removing the physdev will flush all the ports that are on its map, but
>> not the ones on other netdevs' maps. Since flows take reference count on
>> both their vport and their physdev, the physdev still has references on.
>> Trying to remove it and re-add it fails with "already in use" error.
>>
>> Fix it by flushing the physdev's offload flows in all related netdevs,
>> e.g. the netdev itself, or for physical devices, all vports.
>>
>> Fixes: adbd4301a249 ("netdev-offload-dpdk: Use per-netdev offload metadata.")
>> Reported-by: 15895987278 
>> Signed-off-by: Eli Britstein 
> 
> Acked-by: Simon Horman 
> 

Thanks, Eli and Simon!  And David for checking the previous versions!

I applied this one patch for now.

Best regards, Ilya Maximets.
___
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev


Re: [ovs-dev] [PATCH V3 1/2] netdev-offload-dpdk: Fix flushing of a physdev

2023-06-29 Thread Simon Horman
On Sun, Jun 11, 2023 at 06:58:26PM +0300, Eli Britstein via dev wrote:
> Vport's offloads are done on the tracked orig-in-port, but the flow itself
> is associated in the vport's map.
> 
> Removing the physdev will flush all the ports that are on its map, but
> not the ones on other netdevs' maps. Since flows take reference count on
> both their vport and their physdev, the physdev still has references on.
> Trying to remove it and re-add it fails with "already in use" error.
> 
> Fix it by flushing the physdev's offload flows in all related netdevs,
> e.g. the netdev itself, or for physical devices, all vports.
> 
> Fixes: adbd4301a249 ("netdev-offload-dpdk: Use per-netdev offload metadata.")
> Reported-by: 15895987278 
> Signed-off-by: Eli Britstein 

Acked-by: Simon Horman 

___
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev


[ovs-dev] [PATCH V3 1/2] netdev-offload-dpdk: Fix flushing of a physdev

2023-06-11 Thread Eli Britstein via dev
Vport's offloads are done on the tracked orig-in-port, but the flow itself
is associated in the vport's map.

Removing the physdev will flush all the ports that are on its map, but
not the ones on other netdevs' maps. Since flows take reference count on
both their vport and their physdev, the physdev still has references on.
Trying to remove it and re-add it fails with "already in use" error.

Fix it by flushing the physdev's offload flows in all related netdevs,
e.g. the netdev itself, or for physical devices, all vports.

Fixes: adbd4301a249 ("netdev-offload-dpdk: Use per-netdev offload metadata.")
Reported-by: 15895987278 
Signed-off-by: Eli Britstein 
---
 lib/netdev-offload-dpdk.c | 35 ++-
 1 file changed, 30 insertions(+), 5 deletions(-)

diff --git a/lib/netdev-offload-dpdk.c b/lib/netdev-offload-dpdk.c
index 14bc87771..992627fa2 100644
--- a/lib/netdev-offload-dpdk.c
+++ b/lib/netdev-offload-dpdk.c
@@ -2537,15 +2537,15 @@ out:
 return ret;
 }
 
-static int
-netdev_offload_dpdk_flow_flush(struct netdev *netdev)
+static void
+flush_netdev_flows_in_related(struct netdev *netdev, struct netdev *related)
 {
-struct cmap *map = offload_data_map(netdev);
-struct ufid_to_rte_flow_data *data;
 unsigned int tid = netdev_offload_thread_id();
+struct cmap *map = offload_data_map(related);
+struct ufid_to_rte_flow_data *data;
 
 if (!map) {
-return -1;
+return;
 }
 
 CMAP_FOR_EACH (data, node, map) {
@@ -2556,6 +2556,31 @@ netdev_offload_dpdk_flow_flush(struct netdev *netdev)
 netdev_offload_dpdk_flow_destroy(data);
 }
 }
+}
+
+static bool
+flush_in_vport_cb(struct netdev *vport,
+  odp_port_t odp_port OVS_UNUSED,
+  void *aux)
+{
+struct netdev *netdev = aux;
+
+/* Only vports are related to physical devices. */
+if (netdev_vport_is_vport_class(vport->netdev_class)) {
+flush_netdev_flows_in_related(netdev, vport);
+}
+
+return false;
+}
+
+static int
+netdev_offload_dpdk_flow_flush(struct netdev *netdev)
+{
+flush_netdev_flows_in_related(netdev, netdev);
+
+if (!netdev_vport_is_vport_class(netdev->netdev_class)) {
+netdev_ports_traverse(netdev->dpif_type, flush_in_vport_cb, netdev);
+}
 
 return 0;
 }
-- 
2.25.1

___
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev