diff options
author | Leon Romanovsky <leon@kernel.org> | 2016-09-22 16:31:14 +0200 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2016-10-07 22:54:36 +0200 |
commit | 9ce28a20eec551cfc032c87cd31a05c14d11155d (patch) | |
tree | 185d5bb21d0a4629bce3f7f091b2ca60aa3c299c /drivers/infiniband/hw/mlx4/qp.c | |
parent | IB/cxgb4: Move user vendor structures (diff) | |
download | linux-9ce28a20eec551cfc032c87cd31a05c14d11155d.tar.xz linux-9ce28a20eec551cfc032c87cd31a05c14d11155d.zip |
IB/mlx4: Move user vendor structures
This patch moves mlx4 vendor's specific structures to
common UAPI folder which will be visible to all consumers.
These structures are used by user-space library driver
(libmlx4) and currently manually copied to that library.
This move will allow cross-compile against these files and
simplify introduction of vendor specific data.
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/hw/mlx4/qp.c')
-rw-r--r-- | drivers/infiniband/hw/mlx4/qp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/mlx4/qp.c b/drivers/infiniband/hw/mlx4/qp.c index 768085f59566..44c8a0da1507 100644 --- a/drivers/infiniband/hw/mlx4/qp.c +++ b/drivers/infiniband/hw/mlx4/qp.c @@ -47,7 +47,7 @@ #include <linux/mlx4/qp.h> #include "mlx4_ib.h" -#include "user.h" +#include <rdma/mlx4-abi.h> static void mlx4_ib_lock_cqs(struct mlx4_ib_cq *send_cq, struct mlx4_ib_cq *recv_cq); |