Re: [ovs-dev] [PATCH] netdev-offload-dpdk: Fix crash in debug log.

2023-05-29 Thread Ilya Maximets
On 5/26/23 22:32, Mike Pattrick wrote: > On Fri, May 26, 2023 at 11:05 AM David Marchand > wrote: >> >> The offload thread calling ufid_to_rte_flow_disassociate() may be the >> last one holding a reference on the netdev and physdev. >> So displaying informations about them might trigger a crash wh

Re: [ovs-dev] [PATCH] netdev-offload-dpdk: Fix crash in debug log.

2023-05-26 Thread Mike Pattrick
On Fri, May 26, 2023 at 11:05 AM David Marchand wrote: > > The offload thread calling ufid_to_rte_flow_disassociate() may be the > last one holding a reference on the netdev and physdev. > So displaying informations about them might trigger a crash when > removing a physical port. > > Fixes: faf71

[ovs-dev] [PATCH] netdev-offload-dpdk: Fix crash in debug log.

2023-05-26 Thread David Marchand
The offload thread calling ufid_to_rte_flow_disassociate() may be the last one holding a reference on the netdev and physdev. So displaying informations about them might trigger a crash when removing a physical port. Fixes: faf71e492263 ("netdev-dpdk: Print port name in offload API messages.") Sig