diff options
author | Guy Levi <guyle@mellanox.com> | 2017-07-04 16:24:25 +0300 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2017-07-24 10:45:50 -0400 |
commit | b8d46ca035060e70f5f0da849d86720752d5aa17 (patch) | |
tree | 428898d9837ce61b4b09ac6834aed121d11dd43e /include/uapi | |
parent | 400b1ebcfe31279895f1baa8ecaa390d9a4a0eef (diff) | |
download | linux-stable-b8d46ca035060e70f5f0da849d86720752d5aa17.tar.gz linux-stable-b8d46ca035060e70f5f0da849d86720752d5aa17.tar.bz2 linux-stable-b8d46ca035060e70f5f0da849d86720752d5aa17.zip |
IB/mlx4: Add support for WQ indirection table related verbs
To enable RSS functionality the IB indirection table object (i.e.
ib_rwq_ind_table) should be used.
This patch implements the related verbs as of create and destroy an
indirection table.
In downstream patches the indirection table will be used as part of RSS
QP creation.
Signed-off-by: Guy Levi <guyle@mellanox.com>
Reviewed-by: Yishai Hadas <yishaih@mellanox.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'include/uapi')
-rw-r--r-- | include/uapi/rdma/mlx4-abi.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/uapi/rdma/mlx4-abi.h b/include/uapi/rdma/mlx4-abi.h index c9702a5f0bda..5591d955ba00 100644 --- a/include/uapi/rdma/mlx4-abi.h +++ b/include/uapi/rdma/mlx4-abi.h @@ -119,4 +119,8 @@ struct mlx4_ib_modify_wq { __u32 reserved; }; +struct mlx4_ib_create_rwq_ind_tbl_resp { + __u32 response_length; + __u32 reserved; +}; #endif /* MLX4_ABI_USER_H */ |