aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeon Romanovsky <leon@kernel.org>2016-09-22 10:31:12 -0400
committerDoug Ledford <dledford@redhat.com>2016-10-07 16:54:35 -0400
commita85fb3383340b417132e5731f9694840660887cb (patch)
tree21a8e916ac2b3e7df0f167333f407f29c9ab66fb
parent3085e29e2f832cbf77ddeeffe715809a31254b5f (diff)
IB/cxgb3: Move user vendor structures
This patch moves cxgb3 vendor's specific structures to common UAPI folder which will be visible to all consumers. These structures are used by user-space library driver (libcxgb3) 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> Reviewed-by: Steve Wise <swise@opengridcomputing.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
-rw-r--r--MAINTAINERS1
-rw-r--r--drivers/infiniband/hw/cxgb3/iwch.c2
-rw-r--r--drivers/infiniband/hw/cxgb3/iwch_provider.c2
-rw-r--r--include/uapi/rdma/Kbuild1
-rw-r--r--include/uapi/rdma/cxgb3-abi.h (renamed from drivers/infiniband/hw/cxgb3/iwch_user.h)8
5 files changed, 9 insertions, 5 deletions
diff --git a/MAINTAINERS b/MAINTAINERS
index e76efbc414cd..8ebd644becef 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -3460,6 +3460,7 @@ L: linux-rdma@vger.kernel.org
3460W: http://www.openfabrics.org 3460W: http://www.openfabrics.org
3461S: Supported 3461S: Supported
3462F: drivers/infiniband/hw/cxgb3/ 3462F: drivers/infiniband/hw/cxgb3/
3463F: include/uapi/rdma/cxgb3-abi.h
3463 3464
3464CXGB4 ETHERNET DRIVER (CXGB4) 3465CXGB4 ETHERNET DRIVER (CXGB4)
3465M: Hariprasad S <hariprasad@chelsio.com> 3466M: Hariprasad S <hariprasad@chelsio.com>
diff --git a/drivers/infiniband/hw/cxgb3/iwch.c b/drivers/infiniband/hw/cxgb3/iwch.c
index 8e77dc543dd1..b3e11329801d 100644
--- a/drivers/infiniband/hw/cxgb3/iwch.c
+++ b/drivers/infiniband/hw/cxgb3/iwch.c
@@ -36,7 +36,7 @@
36 36
37#include "cxgb3_offload.h" 37#include "cxgb3_offload.h"
38#include "iwch_provider.h" 38#include "iwch_provider.h"
39#include "iwch_user.h" 39#include <rdma/cxgb3-abi.h>
40#include "iwch.h" 40#include "iwch.h"
41#include "iwch_cm.h" 41#include "iwch_cm.h"
42 42
diff --git a/drivers/infiniband/hw/cxgb3/iwch_provider.c b/drivers/infiniband/hw/cxgb3/iwch_provider.c
index b47be87d5a53..cba57bb53dba 100644
--- a/drivers/infiniband/hw/cxgb3/iwch_provider.c
+++ b/drivers/infiniband/hw/cxgb3/iwch_provider.c
@@ -58,7 +58,7 @@
58#include "iwch.h" 58#include "iwch.h"
59#include "iwch_provider.h" 59#include "iwch_provider.h"
60#include "iwch_cm.h" 60#include "iwch_cm.h"
61#include "iwch_user.h" 61#include <rdma/cxgb3-abi.h>
62#include "common.h" 62#include "common.h"
63 63
64static struct ib_ah *iwch_ah_create(struct ib_pd *pd, 64static struct ib_ah *iwch_ah_create(struct ib_pd *pd,
diff --git a/include/uapi/rdma/Kbuild b/include/uapi/rdma/Kbuild
index e9b0ca24f29d..681d7189a01a 100644
--- a/include/uapi/rdma/Kbuild
+++ b/include/uapi/rdma/Kbuild
@@ -7,4 +7,5 @@ header-y += rdma_netlink.h
7header-y += rdma_user_cm.h 7header-y += rdma_user_cm.h
8header-y += hfi/ 8header-y += hfi/
9header-y += rdma_user_rxe.h 9header-y += rdma_user_rxe.h
10header-y += cxgb3-abi.h
10header-y += mlx5-abi.h 11header-y += mlx5-abi.h
diff --git a/drivers/infiniband/hw/cxgb3/iwch_user.h b/include/uapi/rdma/cxgb3-abi.h
index a277c31fcaf7..48a19bda071b 100644
--- a/drivers/infiniband/hw/cxgb3/iwch_user.h
+++ b/include/uapi/rdma/cxgb3-abi.h
@@ -29,8 +29,10 @@
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE. 30 * SOFTWARE.
31 */ 31 */
32#ifndef __IWCH_USER_H__ 32#ifndef CXGB3_ABI_USER_H
33#define __IWCH_USER_H__ 33#define CXBG3_ABI_USER_H
34
35#include <linux/types.h>
34 36
35#define IWCH_UVERBS_ABI_VERSION 1 37#define IWCH_UVERBS_ABI_VERSION 1
36 38
@@ -71,4 +73,4 @@ struct iwch_create_qp_resp {
71struct iwch_reg_user_mr_resp { 73struct iwch_reg_user_mr_resp {
72 __u32 pbl_addr; 74 __u32 pbl_addr;
73}; 75};
74#endif 76#endif /* CXGB3_ABI_USER_H */