diff options
author | Hans Wippel <hwippel@linux.ibm.com> | 2018-11-20 16:46:41 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-11-21 16:14:56 -0800 |
commit | 0512f69e388c963dbe955d4bd9ae0f7d88d2dc54 (patch) | |
tree | 38627f33d9ef54a2c83beb2628ec2bbf7c663827 /net/smc/smc_core.h | |
parent | ee05ff7af26509f39360534a5225ee714416cdfd (diff) | |
download | linux-0512f69e388c963dbe955d4bd9ae0f7d88d2dc54.tar.gz linux-0512f69e388c963dbe955d4bd9ae0f7d88d2dc54.tar.bz2 linux-0512f69e388c963dbe955d4bd9ae0f7d88d2dc54.zip |
net/smc: add SMC-D shutdown signal
When a SMC-D link group is freed, a shutdown signal should be sent to
the peer to indicate that the link group is invalid. This patch adds the
shutdown signal to the SMC code.
Signed-off-by: Hans Wippel <hwippel@linux.ibm.com>
Signed-off-by: Ursula Braun <ubraun@linux.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/smc/smc_core.h')
-rw-r--r-- | net/smc/smc_core.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/smc/smc_core.h b/net/smc/smc_core.h index 5bc6cbaf0ed5..cf98f4d6093e 100644 --- a/net/smc/smc_core.h +++ b/net/smc/smc_core.h @@ -247,7 +247,8 @@ void smc_lgr_free(struct smc_link_group *lgr); void smc_lgr_forget(struct smc_link_group *lgr); void smc_lgr_terminate(struct smc_link_group *lgr); void smc_port_terminate(struct smc_ib_device *smcibdev, u8 ibport); -void smc_smcd_terminate(struct smcd_dev *dev, u64 peer_gid); +void smc_smcd_terminate(struct smcd_dev *dev, u64 peer_gid, + unsigned short vlan); int smc_buf_create(struct smc_sock *smc, bool is_smcd); int smc_uncompress_bufsize(u8 compressed); int smc_rmb_rtoken_handling(struct smc_connection *conn, |