public inbox for dev@dpdk.org
 help / color / mirror / Atom feed
* [PATCH] drivers/net: reorder Intel drivers list in meson script
@ 2026-01-23 16:21 Thierry Herbelot
  2026-01-23 16:27 ` [V2] " Thierry Herbelot
  2026-02-17 12:48 ` [PATCH] usertools/pmdinfo: fix search for PMD info string Bruce Richardson
  0 siblings, 2 replies; 14+ messages in thread
From: Thierry Herbelot @ 2026-01-23 16:21 UTC (permalink / raw)
  To: dev
  Cc: Thierry Herbelot, Thomas Monjalon, Bruce Richardson,
	Anatoly Burakov, stable, Olivier Matz

After an upstream patch (see Fixes), net_ixgbe_vf is no longer declared
in testpmd PMD info, when compiling under Redhat-9:

> [user@vader dpdk]$ meson setup build && ninja -C build
> [user@vader dpdk]$ ./usertools/dpdk-pmdinfo.py build/app/dpdk-testpmd|grep ixgbe
>     "name": "net_ixgbe",

Name 'net_ixgbe_vf' should also be reported.

One workaround is to move 'intel/ixgbe' as last in the list of Intel
drivers. This restores net_ixgbe_vf under Redhat-9:

> [user@vader dpdk]$ ./usertools/dpdk-pmdinfo.py build/app/dpdk-testpmd|grep ixgbe
>     "name": "net_ixgbe_vf",
>     "name": "net_ixgbe",

Fixes: 04f1b16c54f3 ("drivers: merge common and net idpf drivers")
Signed-off-by: Thierry Herbelot <thierry.herbelot@6wind.com>
---
 drivers/net/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/meson.build b/drivers/net/meson.build
index c7dae4ad273c..8d96244cdbb0 100644
--- a/drivers/net/meson.build
+++ b/drivers/net/meson.build
@@ -32,8 +32,8 @@ drivers = [
         'intel/ice',
         'intel/idpf',
         'intel/ipn3ke',
-        'intel/ixgbe',
         'intel/cpfl',  # depends on idpf, so must come after it
+        'intel/ixgbe',
         'ionic',
         'mana',
         'memif',
-- 
2.39.2


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

end of thread, other threads:[~2026-03-17 13:57 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-23 16:21 [PATCH] drivers/net: reorder Intel drivers list in meson script Thierry Herbelot
2026-01-23 16:27 ` [V2] " Thierry Herbelot
2026-01-23 16:50   ` Bruce Richardson
2026-01-23 16:57     ` Thierry Herbelot
2026-02-16 10:48       ` Bruce Richardson
2026-02-16 11:32         ` Bruce Richardson
2026-02-16 17:39           ` Thomas Monjalon
2026-02-17 12:48 ` [PATCH] usertools/pmdinfo: fix search for PMD info string Bruce Richardson
2026-02-17 17:53   ` David Marchand
2026-02-17 17:59     ` Bruce Richardson
2026-02-18  7:43       ` Thierry Herbelot
2026-02-18  8:38       ` David Marchand
2026-02-18  9:41   ` Robin Jarry
2026-03-17 13:57     ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox