|
@@ -214,12 +214,11 @@ int smc_llc_send_confirm_link(struct smc_link *link, u8 mac[],
|
|
|
return rc;
|
|
|
}
|
|
|
|
|
|
-/* send ADD LINK request or response */
|
|
|
-int smc_llc_send_add_link(struct smc_link *link, u8 mac[],
|
|
|
- union ib_gid *gid,
|
|
|
- enum smc_llc_reqresp reqresp)
|
|
|
+/* send LLC confirm rkey request */
|
|
|
+static int smc_llc_send_confirm_rkey(struct smc_link *link,
|
|
|
+ struct smc_buf_desc *rmb_desc)
|
|
|
{
|
|
|
- struct smc_llc_msg_add_link *addllc;
|
|
|
+ struct smc_llc_msg_confirm_rkey *rkeyllc;
|
|
|
struct smc_wr_tx_pend_priv *pend;
|
|
|
struct smc_wr_buf *wr_buf;
|
|
|
int rc;
|
|
@@ -227,7 +226,25 @@ int smc_llc_send_add_link(struct smc_link *link, u8 mac[],
|
|
|
rc = smc_llc_add_pending_send(link, &wr_buf, &pend);
|
|
|
if (rc)
|
|
|
return rc;
|
|
|
- addllc = (struct smc_llc_msg_add_link *)wr_buf;
|
|
|
+ rkeyllc = (struct smc_llc_msg_confirm_rkey *)wr_buf;
|
|
|
+ memset(rkeyllc, 0, sizeof(*rkeyllc));
|
|
|
+ rkeyllc->hd.common.type = SMC_LLC_CONFIRM_RKEY;
|
|
|
+ rkeyllc->hd.length = sizeof(struct smc_llc_msg_confirm_rkey);
|
|
|
+ rkeyllc->rtoken[0].rmb_key =
|
|
|
+ htonl(rmb_desc->mr_rx[SMC_SINGLE_LINK]->rkey);
|
|
|
+ rkeyllc->rtoken[0].rmb_vaddr = cpu_to_be64(
|
|
|
+ (u64)sg_dma_address(rmb_desc->sgt[SMC_SINGLE_LINK].sgl));
|
|
|
+ /* send llc message */
|
|
|
+ rc = smc_wr_tx_send(link, pend);
|
|
|
+ return rc;
|
|
|
+}
|
|
|
+
|
|
|
+/* prepare an add link message */
|
|
|
+static void smc_llc_prep_add_link(struct smc_llc_msg_add_link *addllc,
|
|
|
+ struct smc_link *link, u8 mac[],
|
|
|
+ union ib_gid *gid,
|
|
|
+ enum smc_llc_reqresp reqresp)
|
|
|
+{
|
|
|
memset(addllc, 0, sizeof(*addllc));
|
|
|
addllc->hd.common.type = SMC_LLC_ADD_LINK;
|
|
|
addllc->hd.length = sizeof(struct smc_llc_msg_add_link);
|
|
@@ -239,16 +256,14 @@ int smc_llc_send_add_link(struct smc_link *link, u8 mac[],
|
|
|
}
|
|
|
memcpy(addllc->sender_mac, mac, ETH_ALEN);
|
|
|
memcpy(addllc->sender_gid, gid, SMC_GID_SIZE);
|
|
|
- /* send llc message */
|
|
|
- rc = smc_wr_tx_send(link, pend);
|
|
|
- return rc;
|
|
|
}
|
|
|
|
|
|
-/* send DELETE LINK request or response */
|
|
|
-int smc_llc_send_delete_link(struct smc_link *link,
|
|
|
- enum smc_llc_reqresp reqresp)
|
|
|
+/* send ADD LINK request or response */
|
|
|
+int smc_llc_send_add_link(struct smc_link *link, u8 mac[],
|
|
|
+ union ib_gid *gid,
|
|
|
+ enum smc_llc_reqresp reqresp)
|
|
|
{
|
|
|
- struct smc_llc_msg_del_link *delllc;
|
|
|
+ struct smc_llc_msg_add_link *addllc;
|
|
|
struct smc_wr_tx_pend_priv *pend;
|
|
|
struct smc_wr_buf *wr_buf;
|
|
|
int rc;
|
|
@@ -256,7 +271,18 @@ int smc_llc_send_delete_link(struct smc_link *link,
|
|
|
rc = smc_llc_add_pending_send(link, &wr_buf, &pend);
|
|
|
if (rc)
|
|
|
return rc;
|
|
|
- delllc = (struct smc_llc_msg_del_link *)wr_buf;
|
|
|
+ addllc = (struct smc_llc_msg_add_link *)wr_buf;
|
|
|
+ smc_llc_prep_add_link(addllc, link, mac, gid, reqresp);
|
|
|
+ /* send llc message */
|
|
|
+ rc = smc_wr_tx_send(link, pend);
|
|
|
+ return rc;
|
|
|
+}
|
|
|
+
|
|
|
+/* prepare a delete link message */
|
|
|
+static void smc_llc_prep_delete_link(struct smc_llc_msg_del_link *delllc,
|
|
|
+ struct smc_link *link,
|
|
|
+ enum smc_llc_reqresp reqresp)
|
|
|
+{
|
|
|
memset(delllc, 0, sizeof(*delllc));
|
|
|
delllc->hd.common.type = SMC_LLC_DELETE_LINK;
|
|
|
delllc->hd.length = sizeof(struct smc_llc_msg_add_link);
|
|
@@ -266,14 +292,29 @@ int smc_llc_send_delete_link(struct smc_link *link,
|
|
|
delllc->hd.flags |= SMC_LLC_FLAG_DEL_LINK_ALL;
|
|
|
delllc->hd.flags |= SMC_LLC_FLAG_DEL_LINK_ORDERLY;
|
|
|
delllc->link_num = link->link_id;
|
|
|
+}
|
|
|
+
|
|
|
+/* send DELETE LINK request or response */
|
|
|
+int smc_llc_send_delete_link(struct smc_link *link,
|
|
|
+ enum smc_llc_reqresp reqresp)
|
|
|
+{
|
|
|
+ struct smc_llc_msg_del_link *delllc;
|
|
|
+ struct smc_wr_tx_pend_priv *pend;
|
|
|
+ struct smc_wr_buf *wr_buf;
|
|
|
+ int rc;
|
|
|
+
|
|
|
+ rc = smc_llc_add_pending_send(link, &wr_buf, &pend);
|
|
|
+ if (rc)
|
|
|
+ return rc;
|
|
|
+ delllc = (struct smc_llc_msg_del_link *)wr_buf;
|
|
|
+ smc_llc_prep_delete_link(delllc, link, reqresp);
|
|
|
/* send llc message */
|
|
|
rc = smc_wr_tx_send(link, pend);
|
|
|
return rc;
|
|
|
}
|
|
|
|
|
|
-/* send LLC test link request or response */
|
|
|
-int smc_llc_send_test_link(struct smc_link *link, u8 user_data[16],
|
|
|
- enum smc_llc_reqresp reqresp)
|
|
|
+/* send LLC test link request */
|
|
|
+static int smc_llc_send_test_link(struct smc_link *link, u8 user_data[16])
|
|
|
{
|
|
|
struct smc_llc_msg_test_link *testllc;
|
|
|
struct smc_wr_tx_pend_priv *pend;
|
|
@@ -287,28 +328,52 @@ int smc_llc_send_test_link(struct smc_link *link, u8 user_data[16],
|
|
|
memset(testllc, 0, sizeof(*testllc));
|
|
|
testllc->hd.common.type = SMC_LLC_TEST_LINK;
|
|
|
testllc->hd.length = sizeof(struct smc_llc_msg_test_link);
|
|
|
- if (reqresp == SMC_LLC_RESP)
|
|
|
- testllc->hd.flags |= SMC_LLC_FLAG_RESP;
|
|
|
memcpy(testllc->user_data, user_data, sizeof(testllc->user_data));
|
|
|
/* send llc message */
|
|
|
rc = smc_wr_tx_send(link, pend);
|
|
|
return rc;
|
|
|
}
|
|
|
|
|
|
-/* send a prepared message */
|
|
|
-static int smc_llc_send_message(struct smc_link *link, void *llcbuf, int llclen)
|
|
|
+struct smc_llc_send_work {
|
|
|
+ struct work_struct work;
|
|
|
+ struct smc_link *link;
|
|
|
+ int llclen;
|
|
|
+ union smc_llc_msg llcbuf;
|
|
|
+};
|
|
|
+
|
|
|
+/* worker that sends a prepared message */
|
|
|
+static void smc_llc_send_message_work(struct work_struct *work)
|
|
|
{
|
|
|
+ struct smc_llc_send_work *llcwrk = container_of(work,
|
|
|
+ struct smc_llc_send_work, work);
|
|
|
struct smc_wr_tx_pend_priv *pend;
|
|
|
struct smc_wr_buf *wr_buf;
|
|
|
int rc;
|
|
|
|
|
|
- rc = smc_llc_add_pending_send(link, &wr_buf, &pend);
|
|
|
+ if (llcwrk->link->state == SMC_LNK_INACTIVE)
|
|
|
+ goto out;
|
|
|
+ rc = smc_llc_add_pending_send(llcwrk->link, &wr_buf, &pend);
|
|
|
if (rc)
|
|
|
- return rc;
|
|
|
- memcpy(wr_buf, llcbuf, llclen);
|
|
|
- /* send llc message */
|
|
|
- rc = smc_wr_tx_send(link, pend);
|
|
|
- return rc;
|
|
|
+ goto out;
|
|
|
+ memcpy(wr_buf, &llcwrk->llcbuf, llcwrk->llclen);
|
|
|
+ smc_wr_tx_send(llcwrk->link, pend);
|
|
|
+out:
|
|
|
+ kfree(llcwrk);
|
|
|
+}
|
|
|
+
|
|
|
+/* copy llcbuf and schedule an llc send on link */
|
|
|
+static int smc_llc_send_message(struct smc_link *link, void *llcbuf, int llclen)
|
|
|
+{
|
|
|
+ struct smc_llc_send_work *wrk = kmalloc(sizeof(*wrk), GFP_ATOMIC);
|
|
|
+
|
|
|
+ if (!wrk)
|
|
|
+ return -ENOMEM;
|
|
|
+ INIT_WORK(&wrk->work, smc_llc_send_message_work);
|
|
|
+ wrk->link = link;
|
|
|
+ wrk->llclen = llclen;
|
|
|
+ memcpy(&wrk->llcbuf, llcbuf, llclen);
|
|
|
+ queue_work(link->llc_wq, &wrk->work);
|
|
|
+ return 0;
|
|
|
}
|
|
|
|
|
|
/********************************* receive ***********************************/
|
|
@@ -359,17 +424,18 @@ static void smc_llc_rx_add_link(struct smc_link *link,
|
|
|
}
|
|
|
|
|
|
if (lgr->role == SMC_SERV) {
|
|
|
- smc_llc_send_add_link(link,
|
|
|
+ smc_llc_prep_add_link(llc, link,
|
|
|
link->smcibdev->mac[link->ibport - 1],
|
|
|
&link->smcibdev->gid[link->ibport - 1],
|
|
|
SMC_LLC_REQ);
|
|
|
|
|
|
} else {
|
|
|
- smc_llc_send_add_link(link,
|
|
|
+ smc_llc_prep_add_link(llc, link,
|
|
|
link->smcibdev->mac[link->ibport - 1],
|
|
|
&link->smcibdev->gid[link->ibport - 1],
|
|
|
SMC_LLC_RESP);
|
|
|
}
|
|
|
+ smc_llc_send_message(link, llc, sizeof(*llc));
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -385,9 +451,11 @@ static void smc_llc_rx_delete_link(struct smc_link *link,
|
|
|
} else {
|
|
|
if (lgr->role == SMC_SERV) {
|
|
|
smc_lgr_forget(lgr);
|
|
|
- smc_llc_send_delete_link(link, SMC_LLC_REQ);
|
|
|
+ smc_llc_prep_delete_link(llc, link, SMC_LLC_REQ);
|
|
|
+ smc_llc_send_message(link, llc, sizeof(*llc));
|
|
|
} else {
|
|
|
- smc_llc_send_delete_link(link, SMC_LLC_RESP);
|
|
|
+ smc_llc_prep_delete_link(llc, link, SMC_LLC_RESP);
|
|
|
+ smc_llc_send_message(link, llc, sizeof(*llc));
|
|
|
smc_lgr_terminate(lgr);
|
|
|
}
|
|
|
}
|
|
@@ -400,7 +468,8 @@ static void smc_llc_rx_test_link(struct smc_link *link,
|
|
|
if (link->state == SMC_LNK_ACTIVE)
|
|
|
complete(&link->llc_testlink_resp);
|
|
|
} else {
|
|
|
- smc_llc_send_test_link(link, llc->user_data, SMC_LLC_RESP);
|
|
|
+ llc->hd.flags |= SMC_LLC_FLAG_RESP;
|
|
|
+ smc_llc_send_message(link, llc, sizeof(*llc));
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -413,7 +482,9 @@ static void smc_llc_rx_confirm_rkey(struct smc_link *link,
|
|
|
lgr = container_of(link, struct smc_link_group, lnk[SMC_SINGLE_LINK]);
|
|
|
|
|
|
if (llc->hd.flags & SMC_LLC_FLAG_RESP) {
|
|
|
- /* unused as long as we don't send this type of msg */
|
|
|
+ link->llc_confirm_rkey_rc = llc->hd.flags &
|
|
|
+ SMC_LLC_FLAG_RKEY_NEG;
|
|
|
+ complete(&link->llc_confirm_rkey);
|
|
|
} else {
|
|
|
rc = smc_rtoken_add(lgr,
|
|
|
llc->rtoken[0].rmb_vaddr,
|
|
@@ -424,7 +495,7 @@ static void smc_llc_rx_confirm_rkey(struct smc_link *link,
|
|
|
llc->hd.flags |= SMC_LLC_FLAG_RESP;
|
|
|
if (rc < 0)
|
|
|
llc->hd.flags |= SMC_LLC_FLAG_RKEY_NEG;
|
|
|
- smc_llc_send_message(link, (void *)llc, sizeof(*llc));
|
|
|
+ smc_llc_send_message(link, llc, sizeof(*llc));
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -436,7 +507,7 @@ static void smc_llc_rx_confirm_rkey_cont(struct smc_link *link,
|
|
|
} else {
|
|
|
/* ignore rtokens for other links, we have only one link */
|
|
|
llc->hd.flags |= SMC_LLC_FLAG_RESP;
|
|
|
- smc_llc_send_message(link, (void *)llc, sizeof(*llc));
|
|
|
+ smc_llc_send_message(link, llc, sizeof(*llc));
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -464,7 +535,7 @@ static void smc_llc_rx_delete_rkey(struct smc_link *link,
|
|
|
}
|
|
|
|
|
|
llc->hd.flags |= SMC_LLC_FLAG_RESP;
|
|
|
- smc_llc_send_message(link, (void *)llc, sizeof(*llc));
|
|
|
+ smc_llc_send_message(link, llc, sizeof(*llc));
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -477,6 +548,8 @@ static void smc_llc_rx_handler(struct ib_wc *wc, void *buf)
|
|
|
return; /* short message */
|
|
|
if (llc->raw.hdr.length != sizeof(*llc))
|
|
|
return; /* invalid message */
|
|
|
+ if (link->state == SMC_LNK_INACTIVE)
|
|
|
+ return; /* link not active, drop msg */
|
|
|
|
|
|
switch (llc->raw.hdr.common.type) {
|
|
|
case SMC_LLC_TEST_LINK:
|
|
@@ -503,7 +576,7 @@ static void smc_llc_rx_handler(struct ib_wc *wc, void *buf)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-/***************************** worker ****************************************/
|
|
|
+/***************************** worker, utils *********************************/
|
|
|
|
|
|
static void smc_llc_testlink_work(struct work_struct *work)
|
|
|
{
|
|
@@ -524,7 +597,7 @@ static void smc_llc_testlink_work(struct work_struct *work)
|
|
|
goto out;
|
|
|
}
|
|
|
reinit_completion(&link->llc_testlink_resp);
|
|
|
- smc_llc_send_test_link(link, user_data, SMC_LLC_REQ);
|
|
|
+ smc_llc_send_test_link(link, user_data);
|
|
|
/* receive TEST LINK response over RoCE fabric */
|
|
|
rc = wait_for_completion_interruptible_timeout(&link->llc_testlink_resp,
|
|
|
SMC_LLC_WAIT_TIME);
|
|
@@ -534,18 +607,36 @@ static void smc_llc_testlink_work(struct work_struct *work)
|
|
|
}
|
|
|
next_interval = link->llc_testlink_time;
|
|
|
out:
|
|
|
- schedule_delayed_work(&link->llc_testlink_wrk, next_interval);
|
|
|
+ queue_delayed_work(link->llc_wq, &link->llc_testlink_wrk,
|
|
|
+ next_interval);
|
|
|
}
|
|
|
|
|
|
-void smc_llc_link_active(struct smc_link *link, int testlink_time)
|
|
|
+int smc_llc_link_init(struct smc_link *link)
|
|
|
{
|
|
|
+ struct smc_link_group *lgr = container_of(link, struct smc_link_group,
|
|
|
+ lnk[SMC_SINGLE_LINK]);
|
|
|
+ link->llc_wq = alloc_ordered_workqueue("llc_wq-%x:%x)", WQ_MEM_RECLAIM,
|
|
|
+ *((u32 *)lgr->id),
|
|
|
+ link->link_id);
|
|
|
+ if (!link->llc_wq)
|
|
|
+ return -ENOMEM;
|
|
|
+ init_completion(&link->llc_confirm);
|
|
|
+ init_completion(&link->llc_confirm_resp);
|
|
|
+ init_completion(&link->llc_add);
|
|
|
+ init_completion(&link->llc_add_resp);
|
|
|
+ init_completion(&link->llc_confirm_rkey);
|
|
|
init_completion(&link->llc_testlink_resp);
|
|
|
INIT_DELAYED_WORK(&link->llc_testlink_wrk, smc_llc_testlink_work);
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
+void smc_llc_link_active(struct smc_link *link, int testlink_time)
|
|
|
+{
|
|
|
link->state = SMC_LNK_ACTIVE;
|
|
|
if (testlink_time) {
|
|
|
link->llc_testlink_time = testlink_time * HZ;
|
|
|
- schedule_delayed_work(&link->llc_testlink_wrk,
|
|
|
- link->llc_testlink_time);
|
|
|
+ queue_delayed_work(link->llc_wq, &link->llc_testlink_wrk,
|
|
|
+ link->llc_testlink_time);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -557,9 +648,26 @@ void smc_llc_link_inactive(struct smc_link *link)
|
|
|
}
|
|
|
|
|
|
/* called in worker context */
|
|
|
-void smc_llc_link_flush(struct smc_link *link)
|
|
|
+void smc_llc_link_clear(struct smc_link *link)
|
|
|
+{
|
|
|
+ flush_workqueue(link->llc_wq);
|
|
|
+ destroy_workqueue(link->llc_wq);
|
|
|
+}
|
|
|
+
|
|
|
+/* register a new rtoken at the remote peer */
|
|
|
+int smc_llc_do_confirm_rkey(struct smc_link *link,
|
|
|
+ struct smc_buf_desc *rmb_desc)
|
|
|
{
|
|
|
- cancel_delayed_work_sync(&link->llc_testlink_wrk);
|
|
|
+ int rc;
|
|
|
+
|
|
|
+ reinit_completion(&link->llc_confirm_rkey);
|
|
|
+ smc_llc_send_confirm_rkey(link, rmb_desc);
|
|
|
+ /* receive CONFIRM RKEY response from server over RoCE fabric */
|
|
|
+ rc = wait_for_completion_interruptible_timeout(&link->llc_confirm_rkey,
|
|
|
+ SMC_LLC_WAIT_TIME);
|
|
|
+ if (rc <= 0 || link->llc_confirm_rkey_rc)
|
|
|
+ return -EFAULT;
|
|
|
+ return 0;
|
|
|
}
|
|
|
|
|
|
/***************************** init, exit, misc ******************************/
|