Merge branch 'linus/master' into rdma.git for-next
rdma.git merge resolution for the 4.19 merge window Conflicts: drivers/infiniband/core/rdma_core.c - Use the rdma code and revise with the new spelling for atomic_fetch_add_unless drivers/nvme/host/rdma.c - Replace max_sge with max_send_sge in new blk code drivers/nvme/target/rdma.c - Use the blk code and revise to use NULL for ib_post_recv when appropriate - Replace max_sge with max_recv_sge in new blk code net/rds/ib_send.c - Use the net code and revise to use NULL for ib_post_recv when appropriate Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
This commit is contained in:
170
net/smc/smc_ib.c
170
net/smc/smc_ib.c
@@ -69,7 +69,7 @@ static int smc_ib_modify_qp_rtr(struct smc_link *lnk)
|
||||
qp_attr.path_mtu = min(lnk->path_mtu, lnk->peer_mtu);
|
||||
qp_attr.ah_attr.type = RDMA_AH_ATTR_TYPE_ROCE;
|
||||
rdma_ah_set_port_num(&qp_attr.ah_attr, lnk->ibport);
|
||||
rdma_ah_set_grh(&qp_attr.ah_attr, NULL, 0, 0, 1, 0);
|
||||
rdma_ah_set_grh(&qp_attr.ah_attr, NULL, 0, lnk->sgid_index, 1, 0);
|
||||
rdma_ah_set_dgid_raw(&qp_attr.ah_attr, lnk->peer_gid);
|
||||
memcpy(&qp_attr.ah_attr.roce.dmac, lnk->peer_mac,
|
||||
sizeof(lnk->peer_mac));
|
||||
@@ -113,8 +113,7 @@ int smc_ib_modify_qp_reset(struct smc_link *lnk)
|
||||
|
||||
int smc_ib_ready_link(struct smc_link *lnk)
|
||||
{
|
||||
struct smc_link_group *lgr =
|
||||
container_of(lnk, struct smc_link_group, lnk[0]);
|
||||
struct smc_link_group *lgr = smc_get_lgr(lnk);
|
||||
int rc = 0;
|
||||
|
||||
rc = smc_ib_modify_qp_init(lnk);
|
||||
@@ -144,6 +143,93 @@ out:
|
||||
return rc;
|
||||
}
|
||||
|
||||
static int smc_ib_fill_mac(struct smc_ib_device *smcibdev, u8 ibport)
|
||||
{
|
||||
struct ib_gid_attr gattr;
|
||||
union ib_gid gid;
|
||||
int rc;
|
||||
|
||||
rc = ib_query_gid(smcibdev->ibdev, ibport, 0, &gid, &gattr);
|
||||
if (rc || !gattr.ndev)
|
||||
return -ENODEV;
|
||||
|
||||
memcpy(smcibdev->mac[ibport - 1], gattr.ndev->dev_addr, ETH_ALEN);
|
||||
dev_put(gattr.ndev);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Create an identifier unique for this instance of SMC-R.
|
||||
* The MAC-address of the first active registered IB device
|
||||
* plus a random 2-byte number is used to create this identifier.
|
||||
* This name is delivered to the peer during connection initialization.
|
||||
*/
|
||||
static inline void smc_ib_define_local_systemid(struct smc_ib_device *smcibdev,
|
||||
u8 ibport)
|
||||
{
|
||||
memcpy(&local_systemid[2], &smcibdev->mac[ibport - 1],
|
||||
sizeof(smcibdev->mac[ibport - 1]));
|
||||
get_random_bytes(&local_systemid[0], 2);
|
||||
}
|
||||
|
||||
bool smc_ib_port_active(struct smc_ib_device *smcibdev, u8 ibport)
|
||||
{
|
||||
return smcibdev->pattr[ibport - 1].state == IB_PORT_ACTIVE;
|
||||
}
|
||||
|
||||
/* determine the gid for an ib-device port and vlan id */
|
||||
int smc_ib_determine_gid(struct smc_ib_device *smcibdev, u8 ibport,
|
||||
unsigned short vlan_id, u8 gid[], u8 *sgid_index)
|
||||
{
|
||||
struct ib_gid_attr gattr;
|
||||
union ib_gid _gid;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < smcibdev->pattr[ibport - 1].gid_tbl_len; i++) {
|
||||
memset(&_gid, 0, SMC_GID_SIZE);
|
||||
memset(&gattr, 0, sizeof(gattr));
|
||||
if (ib_query_gid(smcibdev->ibdev, ibport, i, &_gid, &gattr))
|
||||
continue;
|
||||
if (!gattr.ndev)
|
||||
continue;
|
||||
if (((!vlan_id && !is_vlan_dev(gattr.ndev)) ||
|
||||
(vlan_id && is_vlan_dev(gattr.ndev) &&
|
||||
vlan_dev_vlan_id(gattr.ndev) == vlan_id)) &&
|
||||
gattr.gid_type == IB_GID_TYPE_IB) {
|
||||
if (gid)
|
||||
memcpy(gid, &_gid, SMC_GID_SIZE);
|
||||
if (sgid_index)
|
||||
*sgid_index = i;
|
||||
dev_put(gattr.ndev);
|
||||
return 0;
|
||||
}
|
||||
dev_put(gattr.ndev);
|
||||
}
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
static int smc_ib_remember_port_attr(struct smc_ib_device *smcibdev, u8 ibport)
|
||||
{
|
||||
int rc;
|
||||
|
||||
memset(&smcibdev->pattr[ibport - 1], 0,
|
||||
sizeof(smcibdev->pattr[ibport - 1]));
|
||||
rc = ib_query_port(smcibdev->ibdev, ibport,
|
||||
&smcibdev->pattr[ibport - 1]);
|
||||
if (rc)
|
||||
goto out;
|
||||
/* the SMC protocol requires specification of the RoCE MAC address */
|
||||
rc = smc_ib_fill_mac(smcibdev, ibport);
|
||||
if (rc)
|
||||
goto out;
|
||||
if (!strncmp(local_systemid, SMC_LOCAL_SYSTEMID_RESET,
|
||||
sizeof(local_systemid)) &&
|
||||
smc_ib_port_active(smcibdev, ibport))
|
||||
/* create unique system identifier */
|
||||
smc_ib_define_local_systemid(smcibdev, ibport);
|
||||
out:
|
||||
return rc;
|
||||
}
|
||||
|
||||
/* process context wrapper for might_sleep smc_ib_remember_port_attr */
|
||||
static void smc_ib_port_event_work(struct work_struct *work)
|
||||
{
|
||||
@@ -371,62 +457,6 @@ void smc_ib_buf_unmap_sg(struct smc_ib_device *smcibdev,
|
||||
buf_slot->sgt[SMC_SINGLE_LINK].sgl->dma_address = 0;
|
||||
}
|
||||
|
||||
static int smc_ib_fill_gid_and_mac(struct smc_ib_device *smcibdev, u8 ibport)
|
||||
{
|
||||
struct ib_gid_attr gattr;
|
||||
int rc;
|
||||
|
||||
rc = ib_query_gid(smcibdev->ibdev, ibport, 0,
|
||||
&smcibdev->gid[ibport - 1], &gattr);
|
||||
if (rc || !gattr.ndev)
|
||||
return -ENODEV;
|
||||
|
||||
memcpy(smcibdev->mac[ibport - 1], gattr.ndev->dev_addr, ETH_ALEN);
|
||||
dev_put(gattr.ndev);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Create an identifier unique for this instance of SMC-R.
|
||||
* The MAC-address of the first active registered IB device
|
||||
* plus a random 2-byte number is used to create this identifier.
|
||||
* This name is delivered to the peer during connection initialization.
|
||||
*/
|
||||
static inline void smc_ib_define_local_systemid(struct smc_ib_device *smcibdev,
|
||||
u8 ibport)
|
||||
{
|
||||
memcpy(&local_systemid[2], &smcibdev->mac[ibport - 1],
|
||||
sizeof(smcibdev->mac[ibport - 1]));
|
||||
get_random_bytes(&local_systemid[0], 2);
|
||||
}
|
||||
|
||||
bool smc_ib_port_active(struct smc_ib_device *smcibdev, u8 ibport)
|
||||
{
|
||||
return smcibdev->pattr[ibport - 1].state == IB_PORT_ACTIVE;
|
||||
}
|
||||
|
||||
int smc_ib_remember_port_attr(struct smc_ib_device *smcibdev, u8 ibport)
|
||||
{
|
||||
int rc;
|
||||
|
||||
memset(&smcibdev->pattr[ibport - 1], 0,
|
||||
sizeof(smcibdev->pattr[ibport - 1]));
|
||||
rc = ib_query_port(smcibdev->ibdev, ibport,
|
||||
&smcibdev->pattr[ibport - 1]);
|
||||
if (rc)
|
||||
goto out;
|
||||
/* the SMC protocol requires specification of the RoCE MAC address */
|
||||
rc = smc_ib_fill_gid_and_mac(smcibdev, ibport);
|
||||
if (rc)
|
||||
goto out;
|
||||
if (!strncmp(local_systemid, SMC_LOCAL_SYSTEMID_RESET,
|
||||
sizeof(local_systemid)) &&
|
||||
smc_ib_port_active(smcibdev, ibport))
|
||||
/* create unique system identifier */
|
||||
smc_ib_define_local_systemid(smcibdev, ibport);
|
||||
out:
|
||||
return rc;
|
||||
}
|
||||
|
||||
long smc_ib_setup_per_ibdev(struct smc_ib_device *smcibdev)
|
||||
{
|
||||
struct ib_cq_init_attr cqattr = {
|
||||
@@ -455,9 +485,6 @@ long smc_ib_setup_per_ibdev(struct smc_ib_device *smcibdev)
|
||||
smcibdev->roce_cq_recv = NULL;
|
||||
goto err;
|
||||
}
|
||||
INIT_IB_EVENT_HANDLER(&smcibdev->event_handler, smcibdev->ibdev,
|
||||
smc_ib_global_event_handler);
|
||||
ib_register_event_handler(&smcibdev->event_handler);
|
||||
smc_wr_add_dev(smcibdev);
|
||||
smcibdev->initialized = 1;
|
||||
return rc;
|
||||
@@ -473,7 +500,6 @@ static void smc_ib_cleanup_per_ibdev(struct smc_ib_device *smcibdev)
|
||||
return;
|
||||
smcibdev->initialized = 0;
|
||||
smc_wr_remove_dev(smcibdev);
|
||||
ib_unregister_event_handler(&smcibdev->event_handler);
|
||||
ib_destroy_cq(smcibdev->roce_cq_recv);
|
||||
ib_destroy_cq(smcibdev->roce_cq_send);
|
||||
}
|
||||
@@ -484,6 +510,8 @@ static struct ib_client smc_ib_client;
|
||||
static void smc_ib_add_dev(struct ib_device *ibdev)
|
||||
{
|
||||
struct smc_ib_device *smcibdev;
|
||||
u8 port_cnt;
|
||||
int i;
|
||||
|
||||
if (ibdev->node_type != RDMA_NODE_IB_CA)
|
||||
return;
|
||||
@@ -499,6 +527,21 @@ static void smc_ib_add_dev(struct ib_device *ibdev)
|
||||
list_add_tail(&smcibdev->list, &smc_ib_devices.list);
|
||||
spin_unlock(&smc_ib_devices.lock);
|
||||
ib_set_client_data(ibdev, &smc_ib_client, smcibdev);
|
||||
INIT_IB_EVENT_HANDLER(&smcibdev->event_handler, smcibdev->ibdev,
|
||||
smc_ib_global_event_handler);
|
||||
ib_register_event_handler(&smcibdev->event_handler);
|
||||
|
||||
/* trigger reading of the port attributes */
|
||||
port_cnt = smcibdev->ibdev->phys_port_cnt;
|
||||
for (i = 0;
|
||||
i < min_t(size_t, port_cnt, SMC_MAX_PORTS);
|
||||
i++) {
|
||||
set_bit(i, &smcibdev->port_event_mask);
|
||||
/* determine pnetids of the port */
|
||||
smc_pnetid_by_dev_port(ibdev->dev.parent, i,
|
||||
smcibdev->pnetid[i]);
|
||||
}
|
||||
schedule_work(&smcibdev->port_event_work);
|
||||
}
|
||||
|
||||
/* callback function for ib_register_client() */
|
||||
@@ -513,6 +556,7 @@ static void smc_ib_remove_dev(struct ib_device *ibdev, void *client_data)
|
||||
spin_unlock(&smc_ib_devices.lock);
|
||||
smc_pnet_remove_by_ibdev(smcibdev);
|
||||
smc_ib_cleanup_per_ibdev(smcibdev);
|
||||
ib_unregister_event_handler(&smcibdev->event_handler);
|
||||
kfree(smcibdev);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user