* [PATCH] eth: mlx4: select PAGE_POOL
@ 2025-04-01 1:53 Greg Thelen
2025-04-02 15:50 ` Joe Damato
2025-04-02 23:40 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Greg Thelen @ 2025-04-01 1:53 UTC (permalink / raw)
To: Jakub Kicinski; +Cc: netdev, linux-kernel, Greg Thelen
With commit 8533b14b3d65 ("eth: mlx4: create a page pool for Rx") mlx4
started using functions guarded by PAGE_POOL. This change introduced
build errors when CONFIG_MLX4_EN is set but CONFIG_PAGE_POOL is not:
ld: vmlinux.o: in function `mlx4_en_alloc_frags':
en_rx.c:(.text+0xa5eaf9): undefined reference to `page_pool_alloc_pages'
ld: vmlinux.o: in function `mlx4_en_create_rx_ring':
(.text+0xa5ee91): undefined reference to `page_pool_create'
Make MLX4_EN select PAGE_POOL to fix the ml;x4 build errors.
Fixes: 8533b14b3d65 ("eth: mlx4: create a page pool for Rx")
Signed-off-by: Greg Thelen <gthelen@google.com>
---
drivers/net/ethernet/mellanox/mlx4/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/net/ethernet/mellanox/mlx4/Kconfig b/drivers/net/ethernet/mellanox/mlx4/Kconfig
index 825e05fb8607..0b1cb340206f 100644
--- a/drivers/net/ethernet/mellanox/mlx4/Kconfig
+++ b/drivers/net/ethernet/mellanox/mlx4/Kconfig
@@ -7,6 +7,7 @@ config MLX4_EN
tristate "Mellanox Technologies 1/10/40Gbit Ethernet support"
depends on PCI && NETDEVICES && ETHERNET && INET
depends on PTP_1588_CLOCK_OPTIONAL
+ select PAGE_POOL
select MLX4_CORE
help
This driver supports Mellanox Technologies ConnectX Ethernet
--
2.49.0.472.ge94155a9ec-goog
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] eth: mlx4: select PAGE_POOL
2025-04-01 1:53 [PATCH] eth: mlx4: select PAGE_POOL Greg Thelen
@ 2025-04-02 15:50 ` Joe Damato
2025-04-02 23:40 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Joe Damato @ 2025-04-02 15:50 UTC (permalink / raw)
To: Greg Thelen; +Cc: Jakub Kicinski, netdev, linux-kernel
On Mon, Mar 31, 2025 at 06:53:15PM -0700, Greg Thelen wrote:
> With commit 8533b14b3d65 ("eth: mlx4: create a page pool for Rx") mlx4
> started using functions guarded by PAGE_POOL. This change introduced
> build errors when CONFIG_MLX4_EN is set but CONFIG_PAGE_POOL is not:
>
> ld: vmlinux.o: in function `mlx4_en_alloc_frags':
> en_rx.c:(.text+0xa5eaf9): undefined reference to `page_pool_alloc_pages'
> ld: vmlinux.o: in function `mlx4_en_create_rx_ring':
> (.text+0xa5ee91): undefined reference to `page_pool_create'
>
> Make MLX4_EN select PAGE_POOL to fix the ml;x4 build errors.
>
> Fixes: 8533b14b3d65 ("eth: mlx4: create a page pool for Rx")
> Signed-off-by: Greg Thelen <gthelen@google.com>
> ---
> drivers/net/ethernet/mellanox/mlx4/Kconfig | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/net/ethernet/mellanox/mlx4/Kconfig b/drivers/net/ethernet/mellanox/mlx4/Kconfig
> index 825e05fb8607..0b1cb340206f 100644
> --- a/drivers/net/ethernet/mellanox/mlx4/Kconfig
> +++ b/drivers/net/ethernet/mellanox/mlx4/Kconfig
> @@ -7,6 +7,7 @@ config MLX4_EN
> tristate "Mellanox Technologies 1/10/40Gbit Ethernet support"
> depends on PCI && NETDEVICES && ETHERNET && INET
> depends on PTP_1588_CLOCK_OPTIONAL
> + select PAGE_POOL
I didn't look, but I assume that mlx4 does not use page pool stats?
If it does, there might be a follow-up change to select
PAGE_POOL_STATS?
Reviewed-by: Joe Damato <jdamato@fastly.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] eth: mlx4: select PAGE_POOL
2025-04-01 1:53 [PATCH] eth: mlx4: select PAGE_POOL Greg Thelen
2025-04-02 15:50 ` Joe Damato
@ 2025-04-02 23:40 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-04-02 23:40 UTC (permalink / raw)
To: Greg Thelen; +Cc: kuba, netdev, linux-kernel
Hello:
This patch was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Mon, 31 Mar 2025 18:53:15 -0700 you wrote:
> With commit 8533b14b3d65 ("eth: mlx4: create a page pool for Rx") mlx4
> started using functions guarded by PAGE_POOL. This change introduced
> build errors when CONFIG_MLX4_EN is set but CONFIG_PAGE_POOL is not:
>
> ld: vmlinux.o: in function `mlx4_en_alloc_frags':
> en_rx.c:(.text+0xa5eaf9): undefined reference to `page_pool_alloc_pages'
> ld: vmlinux.o: in function `mlx4_en_create_rx_ring':
> (.text+0xa5ee91): undefined reference to `page_pool_create'
>
> [...]
Here is the summary with links:
- eth: mlx4: select PAGE_POOL
https://git.kernel.org/netdev/net/c/d3210dabda8d
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-04-02 23:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-01 1:53 [PATCH] eth: mlx4: select PAGE_POOL Greg Thelen
2025-04-02 15:50 ` Joe Damato
2025-04-02 23:40 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).