|
@@ -344,17 +344,17 @@ static int smc_clnt_conf_first_link(struct smc_sock *smc)
|
|
|
|
|
|
rc = smc_ib_modify_qp_rts(link);
|
|
|
if (rc)
|
|
|
- return SMC_CLC_DECL_INTERR;
|
|
|
+ return SMC_CLC_DECL_ERR_RDYLNK;
|
|
|
|
|
|
smc_wr_remember_qp_attr(link);
|
|
|
|
|
|
if (smc_reg_rmb(link, smc->conn.rmb_desc, false))
|
|
|
- return SMC_CLC_DECL_INTERR;
|
|
|
+ return SMC_CLC_DECL_ERR_REGRMB;
|
|
|
|
|
|
/* send CONFIRM LINK response over RoCE fabric */
|
|
|
rc = smc_llc_send_confirm_link(link, SMC_LLC_RESP);
|
|
|
if (rc < 0)
|
|
|
- return SMC_CLC_DECL_TCL;
|
|
|
+ return SMC_CLC_DECL_TIMEOUT_CL;
|
|
|
|
|
|
/* receive ADD LINK request from server over RoCE fabric */
|
|
|
rest = wait_for_completion_interruptible_timeout(&link->llc_add,
|
|
@@ -372,7 +372,7 @@ static int smc_clnt_conf_first_link(struct smc_sock *smc)
|
|
|
link->smcibdev->mac[link->ibport - 1],
|
|
|
link->gid, SMC_LLC_RESP);
|
|
|
if (rc < 0)
|
|
|
- return SMC_CLC_DECL_TCL;
|
|
|
+ return SMC_CLC_DECL_TIMEOUT_AL;
|
|
|
|
|
|
smc_llc_link_active(link, net->ipv4.sysctl_tcp_keepalive_time);
|
|
|
|
|
@@ -424,9 +424,10 @@ static void smc_link_save_peer_info(struct smc_link *link,
|
|
|
}
|
|
|
|
|
|
/* fall back during connect */
|
|
|
-static int smc_connect_fallback(struct smc_sock *smc)
|
|
|
+static int smc_connect_fallback(struct smc_sock *smc, int reason_code)
|
|
|
{
|
|
|
smc->use_fallback = true;
|
|
|
+ smc->fallback_rsn = reason_code;
|
|
|
smc_copy_sock_settings_to_clc(smc);
|
|
|
if (smc->sk.sk_state == SMC_INIT)
|
|
|
smc->sk.sk_state = SMC_ACTIVE;
|
|
@@ -443,7 +444,7 @@ static int smc_connect_decline_fallback(struct smc_sock *smc, int reason_code)
|
|
|
sock_put(&smc->sk); /* passive closing */
|
|
|
return reason_code;
|
|
|
}
|
|
|
- if (reason_code != SMC_CLC_DECL_REPLY) {
|
|
|
+ if (reason_code != SMC_CLC_DECL_PEERDECL) {
|
|
|
rc = smc_clc_send_decline(smc, reason_code);
|
|
|
if (rc < 0) {
|
|
|
if (smc->sk.sk_state == SMC_INIT)
|
|
@@ -451,7 +452,7 @@ static int smc_connect_decline_fallback(struct smc_sock *smc, int reason_code)
|
|
|
return rc;
|
|
|
}
|
|
|
}
|
|
|
- return smc_connect_fallback(smc);
|
|
|
+ return smc_connect_fallback(smc, reason_code);
|
|
|
}
|
|
|
|
|
|
/* abort connecting */
|
|
@@ -568,7 +569,7 @@ static int smc_connect_rdma(struct smc_sock *smc,
|
|
|
smc_link_save_peer_info(link, aclc);
|
|
|
|
|
|
if (smc_rmb_rtoken_handling(&smc->conn, aclc))
|
|
|
- return smc_connect_abort(smc, SMC_CLC_DECL_INTERR,
|
|
|
+ return smc_connect_abort(smc, SMC_CLC_DECL_ERR_RTOK,
|
|
|
local_contact);
|
|
|
|
|
|
smc_close_init(smc);
|
|
@@ -576,12 +577,12 @@ static int smc_connect_rdma(struct smc_sock *smc,
|
|
|
|
|
|
if (local_contact == SMC_FIRST_CONTACT) {
|
|
|
if (smc_ib_ready_link(link))
|
|
|
- return smc_connect_abort(smc, SMC_CLC_DECL_INTERR,
|
|
|
+ return smc_connect_abort(smc, SMC_CLC_DECL_ERR_RDYLNK,
|
|
|
local_contact);
|
|
|
} else {
|
|
|
if (!smc->conn.rmb_desc->reused &&
|
|
|
smc_reg_rmb(link, smc->conn.rmb_desc, true))
|
|
|
- return smc_connect_abort(smc, SMC_CLC_DECL_INTERR,
|
|
|
+ return smc_connect_abort(smc, SMC_CLC_DECL_ERR_REGRMB,
|
|
|
local_contact);
|
|
|
}
|
|
|
smc_rmb_sync_sg_for_device(&smc->conn);
|
|
@@ -659,11 +660,11 @@ static int __smc_connect(struct smc_sock *smc)
|
|
|
sock_hold(&smc->sk); /* sock put in passive closing */
|
|
|
|
|
|
if (smc->use_fallback)
|
|
|
- return smc_connect_fallback(smc);
|
|
|
+ return smc_connect_fallback(smc, smc->fallback_rsn);
|
|
|
|
|
|
/* if peer has not signalled SMC-capability, fall back */
|
|
|
if (!tcp_sk(smc->clcsock->sk)->syn_smc)
|
|
|
- return smc_connect_fallback(smc);
|
|
|
+ return smc_connect_fallback(smc, SMC_CLC_DECL_PEERNOSMC);
|
|
|
|
|
|
/* IPSec connections opt out of SMC-R optimizations */
|
|
|
if (using_ipsec(smc))
|
|
@@ -693,7 +694,7 @@ static int __smc_connect(struct smc_sock *smc)
|
|
|
|
|
|
/* if neither ISM nor RDMA are supported, fallback */
|
|
|
if (!rdma_supported && !ism_supported)
|
|
|
- return smc_connect_decline_fallback(smc, SMC_CLC_DECL_CNFERR);
|
|
|
+ return smc_connect_decline_fallback(smc, SMC_CLC_DECL_NOSMCDEV);
|
|
|
|
|
|
/* perform CLC handshake */
|
|
|
rc = smc_connect_clc(smc, smc_type, &aclc, ibdev, ibport, gid, ismdev);
|
|
@@ -708,7 +709,7 @@ static int __smc_connect(struct smc_sock *smc)
|
|
|
else if (ism_supported && aclc.hdr.path == SMC_TYPE_D)
|
|
|
rc = smc_connect_ism(smc, &aclc, ismdev);
|
|
|
else
|
|
|
- rc = SMC_CLC_DECL_CNFERR;
|
|
|
+ rc = SMC_CLC_DECL_MODEUNSUPP;
|
|
|
if (rc) {
|
|
|
smc_connect_ism_vlan_cleanup(smc, ism_supported, ismdev, vlan);
|
|
|
return smc_connect_decline_fallback(smc, rc);
|
|
@@ -946,12 +947,12 @@ static int smc_serv_conf_first_link(struct smc_sock *smc)
|
|
|
link = &lgr->lnk[SMC_SINGLE_LINK];
|
|
|
|
|
|
if (smc_reg_rmb(link, smc->conn.rmb_desc, false))
|
|
|
- return SMC_CLC_DECL_INTERR;
|
|
|
+ return SMC_CLC_DECL_ERR_REGRMB;
|
|
|
|
|
|
/* send CONFIRM LINK request to client over the RoCE fabric */
|
|
|
rc = smc_llc_send_confirm_link(link, SMC_LLC_REQ);
|
|
|
if (rc < 0)
|
|
|
- return SMC_CLC_DECL_TCL;
|
|
|
+ return SMC_CLC_DECL_TIMEOUT_CL;
|
|
|
|
|
|
/* receive CONFIRM LINK response from client over the RoCE fabric */
|
|
|
rest = wait_for_completion_interruptible_timeout(
|
|
@@ -973,7 +974,7 @@ static int smc_serv_conf_first_link(struct smc_sock *smc)
|
|
|
link->smcibdev->mac[link->ibport - 1],
|
|
|
link->gid, SMC_LLC_REQ);
|
|
|
if (rc < 0)
|
|
|
- return SMC_CLC_DECL_TCL;
|
|
|
+ return SMC_CLC_DECL_TIMEOUT_AL;
|
|
|
|
|
|
/* receive ADD LINK response from client over the RoCE fabric */
|
|
|
rest = wait_for_completion_interruptible_timeout(&link->llc_add_resp,
|
|
@@ -1048,7 +1049,8 @@ static void smc_listen_decline(struct smc_sock *new_smc, int reason_code,
|
|
|
}
|
|
|
smc_conn_free(&new_smc->conn);
|
|
|
new_smc->use_fallback = true;
|
|
|
- if (reason_code && reason_code != SMC_CLC_DECL_REPLY) {
|
|
|
+ new_smc->fallback_rsn = reason_code;
|
|
|
+ if (reason_code && reason_code != SMC_CLC_DECL_PEERDECL) {
|
|
|
if (smc_clc_send_decline(new_smc, reason_code) < 0) {
|
|
|
smc_listen_out_err(new_smc);
|
|
|
return;
|
|
@@ -1139,7 +1141,7 @@ static int smc_listen_rdma_reg(struct smc_sock *new_smc, int local_contact)
|
|
|
if (local_contact != SMC_FIRST_CONTACT) {
|
|
|
if (!new_smc->conn.rmb_desc->reused) {
|
|
|
if (smc_reg_rmb(link, new_smc->conn.rmb_desc, true))
|
|
|
- return SMC_CLC_DECL_INTERR;
|
|
|
+ return SMC_CLC_DECL_ERR_REGRMB;
|
|
|
}
|
|
|
}
|
|
|
smc_rmb_sync_sg_for_device(&new_smc->conn);
|
|
@@ -1159,13 +1161,13 @@ static void smc_listen_rdma_finish(struct smc_sock *new_smc,
|
|
|
smc_link_save_peer_info(link, cclc);
|
|
|
|
|
|
if (smc_rmb_rtoken_handling(&new_smc->conn, cclc)) {
|
|
|
- reason_code = SMC_CLC_DECL_INTERR;
|
|
|
+ reason_code = SMC_CLC_DECL_ERR_RTOK;
|
|
|
goto decline;
|
|
|
}
|
|
|
|
|
|
if (local_contact == SMC_FIRST_CONTACT) {
|
|
|
if (smc_ib_ready_link(link)) {
|
|
|
- reason_code = SMC_CLC_DECL_INTERR;
|
|
|
+ reason_code = SMC_CLC_DECL_ERR_RDYLNK;
|
|
|
goto decline;
|
|
|
}
|
|
|
/* QP confirmation over RoCE fabric */
|
|
@@ -1206,6 +1208,7 @@ static void smc_listen_work(struct work_struct *work)
|
|
|
/* check if peer is smc capable */
|
|
|
if (!tcp_sk(newclcsock->sk)->syn_smc) {
|
|
|
new_smc->use_fallback = true;
|
|
|
+ new_smc->fallback_rsn = SMC_CLC_DECL_PEERNOSMC;
|
|
|
smc_listen_out_connected(new_smc);
|
|
|
return;
|
|
|
}
|
|
@@ -1250,7 +1253,8 @@ static void smc_listen_work(struct work_struct *work)
|
|
|
smc_listen_rdma_reg(new_smc, local_contact))) {
|
|
|
/* SMC not supported, decline */
|
|
|
mutex_unlock(&smc_create_lgr_pending);
|
|
|
- smc_listen_decline(new_smc, SMC_CLC_DECL_CNFERR, local_contact);
|
|
|
+ smc_listen_decline(new_smc, SMC_CLC_DECL_MODEUNSUPP,
|
|
|
+ local_contact);
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -1297,6 +1301,7 @@ static void smc_tcp_listen_work(struct work_struct *work)
|
|
|
|
|
|
new_smc->listen_smc = lsmc;
|
|
|
new_smc->use_fallback = lsmc->use_fallback;
|
|
|
+ new_smc->fallback_rsn = lsmc->fallback_rsn;
|
|
|
sock_hold(lsk); /* sock_put in smc_listen_work */
|
|
|
INIT_WORK(&new_smc->smc_listen_work, smc_listen_work);
|
|
|
smc_copy_sock_settings_to_smc(new_smc);
|
|
@@ -1451,6 +1456,7 @@ static int smc_sendmsg(struct socket *sock, struct msghdr *msg, size_t len)
|
|
|
if (msg->msg_flags & MSG_FASTOPEN) {
|
|
|
if (sk->sk_state == SMC_INIT) {
|
|
|
smc->use_fallback = true;
|
|
|
+ smc->fallback_rsn = SMC_CLC_DECL_OPTUNSUPP;
|
|
|
} else {
|
|
|
rc = -EINVAL;
|
|
|
goto out;
|
|
@@ -1648,6 +1654,7 @@ static int smc_setsockopt(struct socket *sock, int level, int optname,
|
|
|
/* option not supported by SMC */
|
|
|
if (sk->sk_state == SMC_INIT) {
|
|
|
smc->use_fallback = true;
|
|
|
+ smc->fallback_rsn = SMC_CLC_DECL_OPTUNSUPP;
|
|
|
} else {
|
|
|
if (!smc->use_fallback)
|
|
|
rc = -EINVAL;
|
|
@@ -1885,6 +1892,7 @@ static int smc_create(struct net *net, struct socket *sock, int protocol,
|
|
|
/* create internal TCP socket for CLC handshake and fallback */
|
|
|
smc = smc_sk(sk);
|
|
|
smc->use_fallback = false; /* assume rdma capability first */
|
|
|
+ smc->fallback_rsn = 0;
|
|
|
rc = sock_create_kern(net, family, SOCK_STREAM, IPPROTO_TCP,
|
|
|
&smc->clcsock);
|
|
|
if (rc) {
|