Re: [PATCH v3 0/3] testpmd control C fixes

2023-03-15 Thread David Marchand
On Tue, Mar 14, 2023 at 11:40 PM Stephen Hemminger wrote: > > On Tue, 14 Mar 2023 10:36:45 -0700 > Stephen Hemminger wrote: > > > Resolve issues around using control-C in testpmd. > > Using cmdline_poll() is broken and won't work right so > > don't use it. Instead use cmdline_interact() and fix >

Re: [PATCH v3 0/3] testpmd control C fixes

2023-03-14 Thread Stephen Hemminger
On Tue, 14 Mar 2023 10:36:45 -0700 Stephen Hemminger wrote: > Resolve issues around using control-C in testpmd. > Using cmdline_poll() is broken and won't work right so > don't use it. Instead use cmdline_interact() and fix > the signal handling. > > Stephen Hemminger (3): > testpmd: go back t

[PATCH v3 0/3] testpmd control C fixes

2023-03-14 Thread Stephen Hemminger
Resolve issues around using control-C in testpmd. Using cmdline_poll() is broken and won't work right so don't use it. Instead use cmdline_interact() and fix the signal handling. Stephen Hemminger (3): testpmd: go back to using cmdline_interact testpmd: use sig_atomic_t for flag testpmd: ena