net/smc: fixes for converting from "struct smc_cdc_tx_pend **" to "struct smc_wr_tx_pend_priv *"
[ Upstream commite225c9a5a7] "struct smc_cdc_tx_pend **" can not directly convert to "struct smc_wr_tx_pend_priv *". Fixes:2bced6aefa("net/smc: put slot when connection is killed") Signed-off-by: Guangguan Wang <guangguan.wang@linux.alibaba.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b97550e380
commit
630e0a10c0
@@ -72,7 +72,7 @@ int smc_cdc_get_free_slot(struct smc_connection *conn,
|
|||||||
/* abnormal termination */
|
/* abnormal termination */
|
||||||
if (!rc)
|
if (!rc)
|
||||||
smc_wr_tx_put_slot(link,
|
smc_wr_tx_put_slot(link,
|
||||||
(struct smc_wr_tx_pend_priv *)pend);
|
(struct smc_wr_tx_pend_priv *)(*pend));
|
||||||
rc = -EPIPE;
|
rc = -EPIPE;
|
||||||
}
|
}
|
||||||
return rc;
|
return rc;
|
||||||
|
|||||||
Reference in New Issue
Block a user