projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
113383e
)
RDMA/qedr: Remove a duplicate assignment in irdma_query_ah()
author
Minjie Du
<duminjie@vivo.com>
Thu, 6 Jul 2023 02:27:03 +0000
(10:27 +0800)
committer
Leon Romanovsky
<leon@kernel.org>
Wed, 12 Jul 2023 12:40:37 +0000
(15:40 +0300)
Delete a duplicate statement from this function implementation.
Fixes:
b48c24c2d710
("RDMA/irdma: Implement device supported verb APIs")
Signed-off-by: Minjie Du <duminjie@vivo.com>
Acked-by: Alok Prasad <palok@marvell.com>
Link:
https://lore.kernel.org/r/20230706022704.1260-1-duminjie@vivo.com
Signed-off-by: Leon Romanovsky <leon@kernel.org>
drivers/infiniband/hw/irdma/verbs.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/infiniband/hw/irdma/verbs.c
b/drivers/infiniband/hw/irdma/verbs.c
index 9c4fe4fa90018142f67fd0bd7bd56a9c57b8cdce..a8326a95d186cdc055bedfdacca4612f892e7ba6 100644
(file)
--- a/
drivers/infiniband/hw/irdma/verbs.c
+++ b/
drivers/infiniband/hw/irdma/verbs.c
@@
-4424,7
+4424,6
@@
static int irdma_query_ah(struct ib_ah *ibah, struct rdma_ah_attr *ah_attr)
ah_attr->grh.traffic_class = ah->sc_ah.ah_info.tc_tos;
ah_attr->grh.hop_limit = ah->sc_ah.ah_info.hop_ttl;
ah_attr->grh.sgid_index = ah->sgid_index;
- ah_attr->grh.sgid_index = ah->sgid_index;
memcpy(&ah_attr->grh.dgid, &ah->dgid,
sizeof(ah_attr->grh.dgid));
}