diff options
author | Florian Fainelli <florian.fainelli@broadcom.com> | 2024-05-06 10:50:40 -0700 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2024-05-07 16:42:45 -0700 |
commit | 0d5044b4e7749099b12da5f2c8618f04bb4fa82f (patch) | |
tree | e1cb983547408911f526a80a02b34343ca5afff6 /lib/Kconfig | |
parent | 445c0b69c72903528fdf0b34015b5b9142062c4b (diff) |
lib: Allow for the DIM library to be modular
Allow the Dynamic Interrupt Moderation (DIM) library to be built as a
module. This is particularly useful in an Android GKI (Google Kernel
Image) configuration where everything is built as a module, including
Ethernet controller drivers. Having to build DIMLIB into the kernel
image with potentially no user is wasteful.
Signed-off-by: Florian Fainelli <florian.fainelli@broadcom.com>
Reviewed-by: Alexander Lobakin <aleksander.lobakin@intel.com>
Link: https://lore.kernel.org/r/20240506175040.410446-1-florian.fainelli@broadcom.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'lib/Kconfig')
-rw-r--r-- | lib/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index 4557bb8a5256..d33a268bc256 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -628,7 +628,7 @@ config SIGNATURE Implementation is done using GnuPG MPI library config DIMLIB - bool + tristate help Dynamic Interrupt Moderation library. Implements an algorithm for dynamically changing CQ moderation values |