diff options
author | Ursula Braun <ubraun@linux.vnet.ibm.com> | 2017-09-21 09:17:34 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-09-21 15:33:03 -0700 |
commit | 51957bc53aa7ca60d63f1ba0d9e3d887562b1723 (patch) | |
tree | 7ba5b1239a5ed9f4316d0c45e1f25bbcc0e77cd8 /net/smc/smc_cdc.h | |
parent | b6cd4b5895848968e8fee93fc5e3dc8babc40b9e (diff) | |
download | blackbird-op-linux-51957bc53aa7ca60d63f1ba0d9e3d887562b1723.tar.gz blackbird-op-linux-51957bc53aa7ca60d63f1ba0d9e3d887562b1723.zip |
net/smc: parameter cleanup in smc_cdc_get_free_slot()
Use the smc_connection as first parameter with smc_cdc_get_free_slot().
This is just a small code cleanup, no functional change.
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 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/smc/smc_cdc.h b/net/smc/smc_cdc.h index 8e1d76f26007..56f883d1159c 100644 --- a/net/smc/smc_cdc.h +++ b/net/smc/smc_cdc.h @@ -206,7 +206,8 @@ static inline void smc_cdc_msg_to_host(struct smc_host_cdc_msg *local, struct smc_cdc_tx_pend; -int smc_cdc_get_free_slot(struct smc_link *link, struct smc_wr_buf **wr_buf, +int smc_cdc_get_free_slot(struct smc_connection *conn, + struct smc_wr_buf **wr_buf, struct smc_cdc_tx_pend **pend); 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, |