Re: [ovs-dev] [PATCH v6] dpdk: Support running PMD threads on any core.

2021-10-06 Thread David Marchand
On Tue, Oct 5, 2021 at 12:43 PM Kevin Traynor wrote: > > @@ -489,6 +498,11 @@ dpdk_init__(const struct smap *ovs_other_config) > > } > > } > > > > +#pragma GCC diagnostic push > > +#pragma GCC diagnostic ignored "-Wdeprecated-declarations" > > +unixctl_command_register("dpdk/lc

Re: [ovs-dev] [PATCH v6] dpdk: Support running PMD threads on any core.

2021-10-05 Thread Kevin Traynor
On 27/09/2021 15:56, David Marchand wrote: Previously in OVS, a PMD thread running on cpu X used lcore X. This assumption limited OVS to run PMD threads on physical cpu < RTE_MAX_LCORE. DPDK 20.08 introduced a new API that associates a non-EAL thread to a free lcore. This new API does not change

[ovs-dev] [PATCH v6] dpdk: Support running PMD threads on any core.

2021-09-27 Thread David Marchand
Previously in OVS, a PMD thread running on cpu X used lcore X. This assumption limited OVS to run PMD threads on physical cpu < RTE_MAX_LCORE. DPDK 20.08 introduced a new API that associates a non-EAL thread to a free lcore. This new API does not change the thread characteristics (like CPU affinit