diff options
author | Heng Qi <hengqi@linux.alibaba.com> | 2024-06-21 18:13:50 +0800 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2024-06-25 17:15:06 -0700 |
commit | b65e697a7c9e0ae28a6255257d8b9b3271960426 (patch) | |
tree | 51f7f96abc033ee9d96d3b33edb8ce78023dfd38 | |
parent | 0e942053e4dc42a760f48c1981f3239825430f15 (diff) | |
download | linux-stable-b65e697a7c9e0ae28a6255257d8b9b3271960426.tar.gz linux-stable-b65e697a7c9e0ae28a6255257d8b9b3271960426.tar.bz2 linux-stable-b65e697a7c9e0ae28a6255257d8b9b3271960426.zip |
dim: make DIMLIB dependent on NET
DIMLIB's capabilities are supplied by the dim, net_dim, and
rdma_dim objects, and dim's interfaces solely act as a base for
net_dim and rdma_dim and are not explicitly used anywhere else.
rdma_dim is utilized by the infiniband driver, while net_dim
is for network devices, excluding the soc/fsl driver.
In this patch, net_dim relies on some NET's interfaces, thus
DIMLIB needs to explicitly depend on the NET Kconfig.
The soc/fsl driver uses the functions provided by net_dim, so
it also needs to depend on NET.
Signed-off-by: Heng Qi <hengqi@linux.alibaba.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://patch.msgid.link/20240621101353.107425-3-hengqi@linux.alibaba.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
-rw-r--r-- | drivers/soc/fsl/Kconfig | 2 | ||||
-rw-r--r-- | lib/Kconfig | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/drivers/soc/fsl/Kconfig b/drivers/soc/fsl/Kconfig index fcec6ed83d5e..a1e0bc8c1757 100644 --- a/drivers/soc/fsl/Kconfig +++ b/drivers/soc/fsl/Kconfig @@ -22,7 +22,7 @@ config FSL_GUTS config FSL_MC_DPIO tristate "QorIQ DPAA2 DPIO driver" - depends on FSL_MC_BUS + depends on FSL_MC_BUS && NET select SOC_BUS select FSL_GUTS select DIMLIB diff --git a/lib/Kconfig b/lib/Kconfig index b0a76dff5c18..b38849af6f13 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -623,6 +623,7 @@ config SIGNATURE config DIMLIB tristate + depends on NET help Dynamic Interrupt Moderation library. Implements an algorithm for dynamically changing CQ moderation values |