examples/ip_frag: fix stale content of ethdev info
authorMarcin Zapolski <marcinx.a.zapolski@intel.com>
Mon, 22 Jul 2019 11:47:01 +0000 (13:47 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 22 Jul 2019 17:10:31 +0000 (19:10 +0200)
The eth_dev_info was used with content that was obsolete. Added update
of struct content prior to use.

Fixes: 6b7780bfebe4 ("examples/ip_frag: fix use of ethdev internal device array")
Cc: stable@dpdk.org
Signed-off-by: Marcin Zapolski <marcinx.a.zapolski@intel.com>
Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
examples/ip_fragmentation/main.c

index edf87a1..03be0c1 100644 (file)
@@ -987,6 +987,7 @@ main(int argc, char **argv)
                printf("\n");
 
                /* init one TX queue per couple (lcore,port) */
+               rte_eth_dev_info_get(portid, &dev_info);
                queueid = 0;
                for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
                        if (rte_lcore_is_enabled(lcore_id) == 0)