Re: [PATCH net 1/1] ibmvnic: serialize access to work queue on remove

2021-02-15 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net.git (refs/heads/master): On Fri, 12 Feb 2021 20:42:50 -0800 you wrote: > The work queue is used to queue reset requests like CHANGE-PARAM or > FAILOVER resets for the worker thread. When the adapter is being removed > the adapter state is set to VNIC_RE

Re: [PATCH net 1/1] ibmvnic: serialize access to work queue on remove

2021-02-13 Thread Dany Madden
On 2021-02-12 20:42, Sukadev Bhattiprolu wrote: The work queue is used to queue reset requests like CHANGE-PARAM or FAILOVER resets for the worker thread. When the adapter is being removed the adapter state is set to VNIC_REMOVING and the work queue is flushed so no new work is added. However t

[PATCH net 1/1] ibmvnic: serialize access to work queue on remove

2021-02-12 Thread Sukadev Bhattiprolu
The work queue is used to queue reset requests like CHANGE-PARAM or FAILOVER resets for the worker thread. When the adapter is being removed the adapter state is set to VNIC_REMOVING and the work queue is flushed so no new work is added. However the check for adapter being removed is racy in that t