Please apply the following patch series for smc to netdev's net-next tree.
Both patches are cleanups and remove unnecessary code.
Julian Wiedmann (1):
net/smc: no need to flush smcd_dev's event_wq before destroying it
Karsten Graul (1):
net/smc: avoid possible duplicate dmb unregistration
net/smc/smc_core.c | 15 ---------------
net/smc/smc_ism.c | 1 -
2 files changed, 16 deletions(-)
--
2.25.1
smc_lgr_cleanup() calls smcd_unregister_all_dmbs() as part of the link
group termination process. This is a leftover from the times when
smc_lgr_cleanup() scheduled a worker to actually free the link group.
Nowadays smc_lgr_cleanup() directly calls smc_lgr_free() without any
delay so an earlier dmb unregistration is no longer needed.
So remove smcd_unregister_all_dmbs() and the call to it.
Signed-off-by: Karsten Graul <redacted>
---
net/smc/smc_core.c | 15 ---------------
1 file changed, 15 deletions(-)
Hello:
This series was applied to netdev/net-next.git (refs/heads/master):
On Wed, 2 Jun 2021 10:56:24 +0200 you wrote:
Please apply the following patch series for smc to netdev's net-next tree.
Both patches are cleanups and remove unnecessary code.
Julian Wiedmann (1):
net/smc: no need to flush smcd_dev's event_wq before destroying it
[...]