Skip to content

Commit

Permalink
IB/mlx4: Move mlx4_uverbs_ex_query_device_resp to include/uapi/
Browse files Browse the repository at this point in the history
This struct is involved in the user API for mlx4 and should not be hidden
inside a driver header file.

Fixes: 09d208b ("IB/mlx4: Add report for RSS capabilities by vendor channel")
Reviewed-by: Mark Bloch <markb@mellanox.com>
Signed-off-by: Yishai Hadas <yishaih@mellanox.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
  • Loading branch information
Yishai Hadas authored and Jason Gunthorpe committed Mar 7, 2018
1 parent 1abb791 commit d50a8a9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 0 additions & 14 deletions drivers/infiniband/hw/mlx4/mlx4_ib.h
Original file line number Diff line number Diff line change
Expand Up @@ -645,20 +645,6 @@ enum query_device_resp_mask {
QUERY_DEVICE_RESP_MASK_TIMESTAMP = 1UL << 0,
};

struct mlx4_ib_rss_caps {
__u64 rx_hash_fields_mask; /* enum mlx4_rx_hash_fields */
__u8 rx_hash_function; /* enum mlx4_rx_hash_function_flags */
__u8 reserved[7];
};

struct mlx4_uverbs_ex_query_device_resp {
__u32 comp_mask;
__u32 response_length;
__u64 hca_core_clock_offset;
__u32 max_inl_recv_sz;
struct mlx4_ib_rss_caps rss_caps;
};

static inline struct mlx4_ib_dev *to_mdev(struct ib_device *ibdev)
{
return container_of(ibdev, struct mlx4_ib_dev, ib_dev);
Expand Down
14 changes: 14 additions & 0 deletions include/uapi/rdma/mlx4-abi.h
Original file line number Diff line number Diff line change
Expand Up @@ -156,4 +156,18 @@ enum mlx4_ib_rx_hash_fields {
MLX4_IB_RX_HASH_INNER = 1ULL << 31,
};

struct mlx4_ib_rss_caps {
__u64 rx_hash_fields_mask; /* enum mlx4_ib_rx_hash_fields */
__u8 rx_hash_function; /* enum mlx4_ib_rx_hash_function_flags */
__u8 reserved[7];
};

struct mlx4_uverbs_ex_query_device_resp {
__u32 comp_mask;
__u32 response_length;
__u64 hca_core_clock_offset;
__u32 max_inl_recv_sz;
struct mlx4_ib_rss_caps rss_caps;
};

#endif /* MLX4_ABI_USER_H */

0 comments on commit d50a8a9

Please sign in to comment.