diff options
author | Karsten Graul <kgraul@linux.ibm.com> | 2020-05-03 15:38:46 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-05-04 02:07:09 +0300 |
commit | c9a5d243035161f06175a7c6d487c9860e0f179a (patch) | |
tree | b1ba0fc7eee71363974f264031f4d46a54d366de /net/smc/smc_wr.c | |
parent | 1551c95b61242b1a20565bae8d711f35a601c4f3 (diff) | |
download | linux-c9a5d243035161f06175a7c6d487c9860e0f179a.tar.xz |
net/smc: delete an asymmetric link as SMC server
When a link group moved from asymmetric to symmetric state then the
dangling asymmetric link can be deleted. Add smc_llc_find_asym_link() to
find the respective link and add smc_llc_delete_asym_link() to delete
it.
Signed-off-by: Karsten Graul <kgraul@linux.ibm.com>
Reviewed-by: Ursula Braun <ubraun@linux.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/smc/smc_wr.c')
-rw-r--r-- | net/smc/smc_wr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/smc/smc_wr.c b/net/smc/smc_wr.c index 031e6c9561b1..3fd27bea4f7a 100644 --- a/net/smc/smc_wr.c +++ b/net/smc/smc_wr.c @@ -61,7 +61,7 @@ static inline bool smc_wr_is_tx_pend(struct smc_link *link) } /* wait till all pending tx work requests on the given link are completed */ -static inline int smc_wr_tx_wait_no_pending_sends(struct smc_link *link) +int smc_wr_tx_wait_no_pending_sends(struct smc_link *link) { if (wait_event_timeout(link->wr_tx_wait, !smc_wr_is_tx_pend(link), SMC_WR_TX_WAIT_PENDING_TIME)) |