git: 7060097908ea - main - mlx5ib: normalize use of the opt_*.h files
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 01 Feb 2022 14:46:20 UTC
The branch main has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=7060097908ea189827ed401dd57d948d7892f019 commit 7060097908ea189827ed401dd57d948d7892f019 Author: Konstantin Belousov <konstantinb@nvidia.com> AuthorDate: 2021-06-14 10:29:39 +0000 Commit: Konstantin Belousov <kib@FreeBSD.org> CommitDate: 2022-02-01 12:45:57 +0000 mlx5ib: normalize use of the opt_*.h files MFC after: 1 week Sponsored by: NVIDIA Networking --- sys/dev/mlx5/mlx5_ib/mlx5_ib_ah.c | 3 +++ sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c | 3 +++ sys/dev/mlx5/mlx5_ib/mlx5_ib_cq.c | 3 +++ sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c | 3 +++ sys/dev/mlx5/mlx5_ib/mlx5_ib_doorbell.c | 3 +++ sys/dev/mlx5/mlx5_ib/mlx5_ib_gsi.c | 3 +++ sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c | 3 +++ sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c | 3 +++ sys/dev/mlx5/mlx5_ib/mlx5_ib_mem.c | 3 +++ sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c | 3 +++ sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c | 3 +++ sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c | 3 +++ sys/dev/mlx5/mlx5_ib/mlx5_ib_virt.c | 3 +++ 13 files changed, 39 insertions(+) diff --git a/sys/dev/mlx5/mlx5_ib/mlx5_ib_ah.c b/sys/dev/mlx5/mlx5_ib/mlx5_ib_ah.c index 6f2e8a91b3e8..8e142316264e 100644 --- a/sys/dev/mlx5/mlx5_ib/mlx5_ib_ah.c +++ b/sys/dev/mlx5/mlx5_ib/mlx5_ib_ah.c @@ -25,6 +25,9 @@ * $FreeBSD$ */ +#include "opt_rss.h" +#include "opt_ratelimit.h" + #include "mlx5_ib.h" static void create_ib_ah(struct mlx5_ib_dev *dev, diff --git a/sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c b/sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c index 85ba77362cca..afc2609919fb 100644 --- a/sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c +++ b/sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c @@ -25,6 +25,9 @@ * $FreeBSD$ */ +#include "opt_rss.h" +#include "opt_ratelimit.h" + #include "mlx5_ib.h" #include <dev/mlx5/cmd.h> diff --git a/sys/dev/mlx5/mlx5_ib/mlx5_ib_cq.c b/sys/dev/mlx5/mlx5_ib/mlx5_ib_cq.c index b0ec3d994a5c..fd3755fd48a7 100644 --- a/sys/dev/mlx5/mlx5_ib/mlx5_ib_cq.c +++ b/sys/dev/mlx5/mlx5_ib/mlx5_ib_cq.c @@ -25,6 +25,9 @@ * $FreeBSD$ */ +#include "opt_rss.h" +#include "opt_ratelimit.h" + #include <linux/kref.h> #include <rdma/ib_umem.h> #include <rdma/ib_user_verbs.h> diff --git a/sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c b/sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c index 99d811169623..bfb44e8ffb34 100644 --- a/sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c +++ b/sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c @@ -25,6 +25,9 @@ * $FreeBSD$ */ +#include "opt_rss.h" +#include "opt_ratelimit.h" + #include <rdma/ib_user_verbs.h> #include <rdma/ib_verbs.h> #include <rdma/uverbs_types.h> diff --git a/sys/dev/mlx5/mlx5_ib/mlx5_ib_doorbell.c b/sys/dev/mlx5/mlx5_ib/mlx5_ib_doorbell.c index 490363fe3bc9..04579fbc2346 100644 --- a/sys/dev/mlx5/mlx5_ib/mlx5_ib_doorbell.c +++ b/sys/dev/mlx5/mlx5_ib/mlx5_ib_doorbell.c @@ -25,6 +25,9 @@ * $FreeBSD$ */ +#include "opt_rss.h" +#include "opt_ratelimit.h" + #include <linux/kref.h> #include <linux/slab.h> #include <rdma/ib_umem.h> diff --git a/sys/dev/mlx5/mlx5_ib/mlx5_ib_gsi.c b/sys/dev/mlx5/mlx5_ib/mlx5_ib_gsi.c index e64be45e9f4a..59e1590e0b30 100644 --- a/sys/dev/mlx5/mlx5_ib/mlx5_ib_gsi.c +++ b/sys/dev/mlx5/mlx5_ib/mlx5_ib_gsi.c @@ -25,6 +25,9 @@ * $FreeBSD$ */ +#include "opt_rss.h" +#include "opt_ratelimit.h" + #include "mlx5_ib.h" struct mlx5_ib_gsi_wr { diff --git a/sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c b/sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c index 719cddec9c34..6abca62ebe47 100644 --- a/sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c +++ b/sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c @@ -25,6 +25,9 @@ * $FreeBSD$ */ +#include "opt_rss.h" +#include "opt_ratelimit.h" + #include <dev/mlx5/vport.h> #include <rdma/ib_mad.h> #include <rdma/ib_smi.h> diff --git a/sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c b/sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c index 9a3fdc4df89e..21944536fc6c 100644 --- a/sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c +++ b/sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c @@ -25,6 +25,9 @@ * $FreeBSD$ */ +#include "opt_rss.h" +#include "opt_ratelimit.h" + #include <linux/module.h> #include <linux/errno.h> #include <linux/pci.h> diff --git a/sys/dev/mlx5/mlx5_ib/mlx5_ib_mem.c b/sys/dev/mlx5/mlx5_ib/mlx5_ib_mem.c index b780fd2f72fd..91e48bce00f0 100644 --- a/sys/dev/mlx5/mlx5_ib/mlx5_ib_mem.c +++ b/sys/dev/mlx5/mlx5_ib/mlx5_ib_mem.c @@ -25,6 +25,9 @@ * $FreeBSD$ */ +#include "opt_rss.h" +#include "opt_ratelimit.h" + #include <linux/module.h> #include <rdma/ib_umem.h> #include <rdma/ib_umem_odp.h> diff --git a/sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c b/sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c index 2b2e2bec9c84..e89e0197fb30 100644 --- a/sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c +++ b/sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c @@ -25,6 +25,9 @@ * $FreeBSD$ */ +#include "opt_rss.h" +#include "opt_ratelimit.h" + #include <linux/kref.h> #include <linux/random.h> #include <linux/delay.h> diff --git a/sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c b/sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c index 78d6ba3de1fd..9a2a3430461f 100644 --- a/sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c +++ b/sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c @@ -25,6 +25,9 @@ * $FreeBSD$ */ +#include "opt_rss.h" +#include "opt_ratelimit.h" + #include <linux/module.h> #include <rdma/ib_umem.h> #include <rdma/ib_cache.h> diff --git a/sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c b/sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c index e0bc4e0f8db1..8e8e263bb5a5 100644 --- a/sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c +++ b/sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c @@ -25,6 +25,9 @@ * $FreeBSD$ */ +#include "opt_rss.h" +#include "opt_ratelimit.h" + #include <linux/module.h> #include <dev/mlx5/qp.h> #include <dev/mlx5/srq.h> diff --git a/sys/dev/mlx5/mlx5_ib/mlx5_ib_virt.c b/sys/dev/mlx5/mlx5_ib/mlx5_ib_virt.c index 6088fb48bb5f..5bd72e7475fc 100644 --- a/sys/dev/mlx5/mlx5_ib/mlx5_ib_virt.c +++ b/sys/dev/mlx5/mlx5_ib/mlx5_ib_virt.c @@ -25,6 +25,9 @@ * $FreeBSD$ */ +#include "opt_rss.h" +#include "opt_ratelimit.h" + #include <linux/module.h> #include <dev/mlx5/vport.h> #include "mlx5_ib.h"