Skip to content

Commit 2be922f

Browse files
Karsten Grauldavem330
authored andcommitted
net/smc: use link_id of server in confirm link reply
The CONFIRM LINK reply message must contain the link_id sent by the server. And set the link_id explicitly when initializing the link. Signed-off-by: Karsten Graul <kgraul@linux.vnet.ibm.com> Signed-off-by: Ursula Braun <ubraun@linux.vnet.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent cbba07a commit 2be922f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

net/smc/smc_core.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ static int smc_lgr_create(struct smc_sock *smc, __be32 peer_in_addr,
177177

178178
lnk = &lgr->lnk[SMC_SINGLE_LINK];
179179
/* initialize link */
180+
lnk->link_id = SMC_SINGLE_LINK;
180181
lnk->smcibdev = smcibdev;
181182
lnk->ibport = ibport;
182183
lnk->path_mtu = smcibdev->pattr[ibport - 1].active_mtu;

net/smc/smc_llc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ int smc_llc_send_confirm_link(struct smc_link *link, u8 mac[],
9292
memcpy(confllc->sender_mac, mac, ETH_ALEN);
9393
memcpy(confllc->sender_gid, gid, SMC_GID_SIZE);
9494
hton24(confllc->sender_qp_num, link->roce_qp->qp_num);
95-
/* confllc->link_num = SMC_SINGLE_LINK; already done by memset above */
95+
confllc->link_num = link->link_id;
9696
memcpy(confllc->link_uid, lgr->id, SMC_LGR_ID_SIZE);
9797
confllc->max_links = SMC_LINKS_PER_LGR_MAX;
9898
/* send llc message */

0 commit comments

Comments
 (0)