Message ID | 20210429230104.16977-1-mohammad.athari.ismail@intel.com (mailing list archive) |
---|---|
State | Accepted |
Commit | db7c691d7f4da6af40a6ce63331a5a9fb9511c2a |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net] net: stmmac: cleared __FPE_REMOVING bit in stmmac_fpe_start_wq() | expand |
Context | Check | Description |
---|---|---|
netdev/cover_letter | success | Link |
netdev/fixes_present | success | Link |
netdev/patch_count | success | Link |
netdev/tree_selection | success | Clearly marked for net |
netdev/subject_prefix | success | Link |
netdev/cc_maintainers | warning | 1 maintainers not CCed: alexandre.torgue@foss.st.com |
netdev/source_inline | success | Was 0 now: 0 |
netdev/verify_signedoff | success | Link |
netdev/module_param | success | Was 0 now: 0 |
netdev/build_32bit | success | Errors and warnings before: 0 this patch: 0 |
netdev/kdoc | success | Errors and warnings before: 0 this patch: 0 |
netdev/verify_fixes | success | Link |
netdev/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 7 lines checked |
netdev/build_allmodconfig_warn | success | Errors and warnings before: 0 this patch: 0 |
netdev/header_inline | success | Link |
Hello: This patch was applied to netdev/net.git (refs/heads/master): On Fri, 30 Apr 2021 07:01:04 +0800 you wrote: > From: Mohammad Athari Bin Ismail <mohammad.athari.ismail@intel.com> > > An issue found when network interface is down and up again, FPE handshake > fails to trigger. This is due to __FPE_REMOVING bit remains being set in > stmmac_fpe_stop_wq() but not cleared in stmmac_fpe_start_wq(). This > cause FPE workqueue task, stmmac_fpe_lp_task() not able to be executed. > > [...] Here is the summary with links: - [net] net: stmmac: cleared __FPE_REMOVING bit in stmmac_fpe_start_wq() https://git.kernel.org/netdev/net/c/db7c691d7f4d You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c index a9a984c57d78..e0b7eebcb512 100644 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c @@ -3180,6 +3180,7 @@ static int stmmac_fpe_start_wq(struct stmmac_priv *priv) char *name; clear_bit(__FPE_TASK_SCHED, &priv->fpe_task_state); + clear_bit(__FPE_REMOVING, &priv->fpe_task_state); name = priv->wq_name; sprintf(name, "%s-fpe", priv->dev->name);