diff options
author | Jason Gunthorpe <jgg@mellanox.com> | 2019-07-09 09:44:47 -0300 |
---|---|---|
committer | Jason Gunthorpe <jgg@mellanox.com> | 2019-07-09 09:44:47 -0300 |
commit | 390d57728d8e6f7283030cb20d3b5459771a32f1 (patch) | |
tree | fe752ae1f3bc33af1ff983555e9ec6d622d9c8d0 /include/rdma | |
parent | 7a54f78d9387b75d8e64bac18e84cd65f639121f (diff) | |
download | linux-390d57728d8e6f7283030cb20d3b5459771a32f1.tar.gz linux-390d57728d8e6f7283030cb20d3b5459771a32f1.tar.bz2 linux-390d57728d8e6f7283030cb20d3b5459771a32f1.zip |
RDMA/core: Make rdma_counter.h compile stand alone
5.4-rc1 will have new compile time debugging to test that headers can be
compiled stand alone. Many rdma headers are already broken and excluded
from the mechanism, however to avoid compile failures during the merge
window fix enough so that the newly added header compiles clean.
Fixes: 413d3347503b ("RDMA/counter: Add set/clear per-port auto mode support")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Signed-off-by: Mark Zhang <markz@mellanox.com>
Diffstat (limited to 'include/rdma')
-rw-r--r-- | include/rdma/rdma_counter.h | 2 | ||||
-rw-r--r-- | include/rdma/restrack.h | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/include/rdma/rdma_counter.h b/include/rdma/rdma_counter.h index 68827700ba95..eb99856e8b30 100644 --- a/include/rdma/rdma_counter.h +++ b/include/rdma/rdma_counter.h @@ -9,10 +9,10 @@ #include <linux/mutex.h> #include <linux/pid_namespace.h> -#include <rdma/ib_verbs.h> #include <rdma/restrack.h> #include <rdma/rdma_netlink.h> +struct ib_device; struct ib_qp; struct auto_mode_param { diff --git a/include/rdma/restrack.h b/include/rdma/restrack.h index 4041a4d96524..b0fc6b26bdf5 100644 --- a/include/rdma/restrack.h +++ b/include/rdma/restrack.h @@ -14,6 +14,9 @@ #include <uapi/rdma/rdma_netlink.h> #include <linux/xarray.h> +struct ib_device; +struct sk_buff; + /** * enum rdma_restrack_type - HW objects to track */ @@ -52,8 +55,6 @@ enum rdma_restrack_type { RDMA_RESTRACK_MAX }; -struct ib_device; - /** * struct rdma_restrack_entry - metadata per-entry */ |