mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 22:14:04 +02:00
RDMA/rxe: Fix a typo in opcode name
commit8d1cfb884eupstream. There is a redundant ']' in the name of opcode IB_OPCODE_RC_SEND_MIDDLE, so just fix it. Fixes:8700e3e7c4("Soft RoCE driver") Link: https://lore.kernel.org/r/20211218112320.3558770-1-cgxu519@mykernel.net Signed-off-by: Chengguang Xu <cgxu519@mykernel.net> Acked-by: Zhu Yanjun <zyjzyj2000@gmail.com> Reviewed-by: Bob Pearson <rpearsonhpe@gmail.com> Signed-off-by: Jason Gunthorpe <jgg@nvidia.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
885860717c
commit
16ad0aa917
|
|
@ -110,7 +110,7 @@ struct rxe_opcode_info rxe_opcode[RXE_NUM_OPCODE] = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
[IB_OPCODE_RC_SEND_MIDDLE] = {
|
[IB_OPCODE_RC_SEND_MIDDLE] = {
|
||||||
.name = "IB_OPCODE_RC_SEND_MIDDLE]",
|
.name = "IB_OPCODE_RC_SEND_MIDDLE",
|
||||||
.mask = RXE_PAYLOAD_MASK | RXE_REQ_MASK | RXE_SEND_MASK
|
.mask = RXE_PAYLOAD_MASK | RXE_REQ_MASK | RXE_SEND_MASK
|
||||||
| RXE_MIDDLE_MASK,
|
| RXE_MIDDLE_MASK,
|
||||||
.length = RXE_BTH_BYTES,
|
.length = RXE_BTH_BYTES,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user