Re: [24.03 RFC 0/3] Add argument manipulation library

2023-11-02 Thread Bruce Richardson
On Thu, Nov 02, 2023 at 10:50:29AM -0700, Stephen Hemminger wrote: > On Thu, 2 Nov 2023 17:28:46 + > Bruce Richardson wrote: > > > DPDK has traditionally assumed that apps are written where argc/argv > > parameters are passed directly to rte_eal_init() and then app arguments > > are handled

Re: [24.03 RFC 0/3] Add argument manipulation library

2023-11-02 Thread Stephen Hemminger
On Thu, 2 Nov 2023 17:28:46 + Bruce Richardson wrote: > DPDK has traditionally assumed that apps are written where argc/argv > parameters are passed directly to rte_eal_init() and then app arguments > are handled afterwards, as is done in the DPDK apps and examples. > > However, based on ot

[24.03 RFC 0/3] Add argument manipulation library

2023-11-02 Thread Bruce Richardson
DPDK has traditionally assumed that apps are written where argc/argv parameters are passed directly to rte_eal_init() and then app arguments are handled afterwards, as is done in the DPDK apps and examples. However, based on other projects, like VPP and OVS, we know that this is often not the case