diff options
author | Ursula Braun <ubraun@linux.vnet.ibm.com> | 2018-01-24 10:28:14 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-01-24 16:52:57 +0100 |
commit | 8429c1343519d7452b8ccd9af9716147512831c9 (patch) | |
tree | 0be2dcdf192d6b130fadbe38fdd0427358acbdd2 /net/smc/smc_cdc.h | |
parent | net/smc: simplify function smc_clcsock_accept() (diff) | |
download | linux-8429c1343519d7452b8ccd9af9716147512831c9.tar.xz linux-8429c1343519d7452b8ccd9af9716147512831c9.zip |
net/smc: get rid of tx_pend waits in socket closing
There is no need to wait for confirmation of pending tx requests
for a closing connection, since pending tx slots are dismissed
when finishing a connection.
Signed-off-by: Ursula Braun <ubraun@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/smc/smc_cdc.h')
-rw-r--r-- | net/smc/smc_cdc.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/smc/smc_cdc.h b/net/smc/smc_cdc.h index 149ceda1b088..ab240b37ad11 100644 --- a/net/smc/smc_cdc.h +++ b/net/smc/smc_cdc.h @@ -214,7 +214,6 @@ void smc_cdc_tx_dismiss_slots(struct smc_connection *conn); int smc_cdc_msg_send(struct smc_connection *conn, struct smc_wr_buf *wr_buf, struct smc_cdc_tx_pend *pend); int smc_cdc_get_slot_and_msg_send(struct smc_connection *conn); -bool smc_cdc_tx_has_pending(struct smc_connection *conn); int smc_cdc_init(void) __init; #endif /* SMC_CDC_H */ |