netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 0/1] enic: add dependency on Page Pool
@ 2025-02-24 23:43 John Daley
  2025-02-24 23:43 ` [PATCH net-next 1/1] " John Daley
  2025-02-26  3:20 ` [PATCH net-next 0/1] " patchwork-bot+netdevbpf
  0 siblings, 2 replies; 4+ messages in thread
From: John Daley @ 2025-02-24 23:43 UTC (permalink / raw)
  To: benve, satishkh, andrew+netdev, davem, edumazet, kuba, pabeni,
	netdev
  Cc: John Daley

Driver was not configured to select page_pool, causing a compile error
if page pool module was not already selected.

Signed-off-by: John Daley <johndale@cisco.com>

John Daley (1):
  enic: Add dependency on Page Pool

 drivers/net/ethernet/cisco/enic/Kconfig | 1 +
 1 file changed, 1 insertion(+)

-- 
2.39.3


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH net-next 1/1] enic: add dependency on Page Pool
  2025-02-24 23:43 [PATCH net-next 0/1] enic: add dependency on Page Pool John Daley
@ 2025-02-24 23:43 ` John Daley
  2025-02-25  3:17   ` Joe Damato
  2025-02-26  3:20 ` [PATCH net-next 0/1] " patchwork-bot+netdevbpf
  1 sibling, 1 reply; 4+ messages in thread
From: John Daley @ 2025-02-24 23:43 UTC (permalink / raw)
  To: benve, satishkh, andrew+netdev, davem, edumazet, kuba, pabeni,
	netdev
  Cc: John Daley, kernel test robot, Nelson Escobar

Driver was not configured to select page_pool, causing a compile error
if page pool module was not already selected.

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202502211253.3XRosM9I-lkp@intel.com/
Fixes: d24cb52b2d8a ("enic: Use the Page Pool API for RX")
Reviewed-by: Nelson Escobar <neescoba@cisco.com>
Signed-off-by: John Daley <johndale@cisco.com>
---
 drivers/net/ethernet/cisco/enic/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/ethernet/cisco/enic/Kconfig b/drivers/net/ethernet/cisco/enic/Kconfig
index ad80c0fa96a6..96709875fe4f 100644
--- a/drivers/net/ethernet/cisco/enic/Kconfig
+++ b/drivers/net/ethernet/cisco/enic/Kconfig
@@ -6,5 +6,6 @@
 config ENIC
 	tristate "Cisco VIC Ethernet NIC Support"
 	depends on PCI
+	select PAGE_POOL
 	help
 	  This enables the support for the Cisco VIC Ethernet card.
-- 
2.39.3


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH net-next 1/1] enic: add dependency on Page Pool
  2025-02-24 23:43 ` [PATCH net-next 1/1] " John Daley
@ 2025-02-25  3:17   ` Joe Damato
  0 siblings, 0 replies; 4+ messages in thread
From: Joe Damato @ 2025-02-25  3:17 UTC (permalink / raw)
  To: John Daley
  Cc: benve, satishkh, andrew+netdev, davem, edumazet, kuba, pabeni,
	netdev, kernel test robot, Nelson Escobar

On Mon, Feb 24, 2025 at 03:43:50PM -0800, John Daley wrote:
> Driver was not configured to select page_pool, causing a compile error
> if page pool module was not already selected.
> 
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202502211253.3XRosM9I-lkp@intel.com/
> Fixes: d24cb52b2d8a ("enic: Use the Page Pool API for RX")
> Reviewed-by: Nelson Escobar <neescoba@cisco.com>
> Signed-off-by: John Daley <johndale@cisco.com>
> ---
>  drivers/net/ethernet/cisco/enic/Kconfig | 1 +
>  1 file changed, 1 insertion(+)

Hrm. This is a fixes, so normally the subject line should probably
be "PATCH net" instead of "PATCH net-next" and stable would be CC'd
- however - it looks like the commit it fixes is only in net-next.

So, CC-ing stable is probably unnecessary ?

At any rate, I'd probably skip the cover letter for a simple patch
like this in the future.

Reviewed-by: Joe Damato <jdamato@fastly.com>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH net-next 0/1] enic: add dependency on Page Pool
  2025-02-24 23:43 [PATCH net-next 0/1] enic: add dependency on Page Pool John Daley
  2025-02-24 23:43 ` [PATCH net-next 1/1] " John Daley
@ 2025-02-26  3:20 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-02-26  3:20 UTC (permalink / raw)
  To: John Daley
  Cc: benve, satishkh, andrew+netdev, davem, edumazet, kuba, pabeni,
	netdev

Hello:

This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Mon, 24 Feb 2025 15:43:49 -0800 you wrote:
> Driver was not configured to select page_pool, causing a compile error
> if page pool module was not already selected.
> 
> Signed-off-by: John Daley <johndale@cisco.com>
> 
> John Daley (1):
>   enic: Add dependency on Page Pool
> 
> [...]

Here is the summary with links:
  - [net-next,1/1] enic: add dependency on Page Pool
    https://git.kernel.org/netdev/net-next/c/91c8d8e4b7a3

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] 4+ messages in thread

end of thread, other threads:[~2025-02-26  3:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-24 23:43 [PATCH net-next 0/1] enic: add dependency on Page Pool John Daley
2025-02-24 23:43 ` [PATCH net-next 1/1] " John Daley
2025-02-25  3:17   ` Joe Damato
2025-02-26  3:20 ` [PATCH net-next 0/1] " 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).