[dpdk-dev] [PATCH V2] kni: fix rtnl deadlocks and race conditions v2

2021-02-23 Thread Elad Nachman
This version 2 of the patch leverages on Stephen Hemminger's 64106 patch from Dec 2019, and fixes the issues reported by Ferruh and Igor: A. KNI sync lock is being locked while rtnl is held. If two threads are calling kni_net_process_request() , then the first one will take the sync lock, relea

Re: [dpdk-dev] [PATCH V2] kni: fix rtnl deadlocks and race conditions v2

2021-02-23 Thread Ferruh Yigit
On 2/23/2021 12:05 PM, Elad Nachman wrote: This version 2 of the patch leverages on Stephen Hemminger's 64106 patch from Dec 2019, and fixes the issues reported by Ferruh and Igor: A. KNI sync lock is being locked while rtnl is held. If two threads are calling kni_net_process_request() , then th