diff options
author | Florian Fainelli <florian.fainelli@broadcom.com> | 2024-05-06 19:50:40 +0200 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2024-05-08 01:42:45 +0200 |
commit | 0d5044b4e7749099b12da5f2c8618f04bb4fa82f (patch) | |
tree | e1cb983547408911f526a80a02b34343ca5afff6 /lib/dim | |
parent | mptcp: fix possible NULL dereferences (diff) | |
download | linux-0d5044b4e7749099b12da5f2c8618f04bb4fa82f.tar.xz linux-0d5044b4e7749099b12da5f2c8618f04bb4fa82f.zip |
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/dim')
-rw-r--r-- | lib/dim/Makefile | 4 | ||||
-rw-r--r-- | lib/dim/dim.c | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lib/dim/Makefile b/lib/dim/Makefile index 1d6858a108cb..c4cc4026c451 100644 --- a/lib/dim/Makefile +++ b/lib/dim/Makefile @@ -2,6 +2,6 @@ # DIM Dynamic Interrupt Moderation library # -obj-$(CONFIG_DIMLIB) += dim.o +obj-$(CONFIG_DIMLIB) += dimlib.o -dim-y := dim.o net_dim.o rdma_dim.o +dimlib-objs := dim.o net_dim.o rdma_dim.o diff --git a/lib/dim/dim.c b/lib/dim/dim.c index e89aaf07bde5..83b65ac74d73 100644 --- a/lib/dim/dim.c +++ b/lib/dim/dim.c @@ -82,3 +82,6 @@ bool dim_calc_stats(struct dim_sample *start, struct dim_sample *end, return true; } EXPORT_SYMBOL(dim_calc_stats); + +MODULE_DESCRIPTION("Dynamic Interrupt Moderation (DIM) library"); +MODULE_LICENSE("Dual BSD/GPL"); |