diff options
author | Ira Weiny <ira.weiny@intel.com> | 2015-05-14 15:01:46 -0400 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2015-05-20 15:58:19 -0400 |
commit | 5d9fb0440698a8b9e8595353d60cfac7ab30efae (patch) | |
tree | 9b6fed56e074c9564ec60d0bcf6fc21a3b453ed9 /drivers/infiniband/core/ucma.c | |
parent | f9b22e355d38c8dbfa19a2d9d5ef9bf07e7c17e6 (diff) | |
download | linux-5d9fb0440698a8b9e8595353d60cfac7ab30efae.tar.gz linux-5d9fb0440698a8b9e8595353d60cfac7ab30efae.tar.bz2 linux-5d9fb0440698a8b9e8595353d60cfac7ab30efae.zip |
IB/core: Change rdma_protocol_iboe to roce
After discussion upstream, it was agreed to transition the usage of iboe
in the kernel to roce. This keeps our terminology consistent with what
was finalized in the IBTA Annex 16 and IBTA Annex 17 publications.
Signed-off-by: Ira Weiny <ira.weiny@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/core/ucma.c')
-rw-r--r-- | drivers/infiniband/core/ucma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/core/ucma.c b/drivers/infiniband/core/ucma.c index d42b816c781f..ad45469f7582 100644 --- a/drivers/infiniband/core/ucma.c +++ b/drivers/infiniband/core/ucma.c @@ -725,7 +725,7 @@ static ssize_t ucma_query_route(struct ucma_file *file, if (rdma_cap_ib_sa(ctx->cm_id->device, ctx->cm_id->port_num)) ucma_copy_ib_route(&resp, &ctx->cm_id->route); - else if (rdma_protocol_iboe(ctx->cm_id->device, ctx->cm_id->port_num)) + else if (rdma_protocol_roce(ctx->cm_id->device, ctx->cm_id->port_num)) ucma_copy_iboe_route(&resp, &ctx->cm_id->route); else if (rdma_protocol_iwarp(ctx->cm_id->device, ctx->cm_id->port_num)) ucma_copy_iw_route(&resp, &ctx->cm_id->route); |