On Fri, Oct 7, 2022 at 1:55 PM Sean Christopherson <seanjc@xxxxxxxxxx> wrote: > > On Mon, Sep 12, 2022, Colton Lewis wrote: > > @@ -393,7 +403,7 @@ int main(int argc, char *argv[]) > > > > guest_modes_append_default(); > > > > - while ((opt = getopt(argc, argv, "ghi:p:m:nb:f:v:or:s:x:")) != -1) { > > + while ((opt = getopt(argc, argv, "ghi:p:m:nb:v:or:s:x:w:")) != -1) { > > This string is getting quite annoying to maintain, e.g. all of these patches > conflict with recent upstream changes, and IIRC will conflict again with Vipin's > changes. AFAICT, the string passed to getopt() doesn't need to be constant, i.e. > can be built programmatically. Not in this series, but as future cleanup we should > at least consider a way to make this slightly less painful to maintain. I have aspirations to consolidate all the memstress (perf_test_util) option handling within memstress.c, rather than duplicating it across all tests. That will help cut down the length of the test-specific option string (although I haven't found a super clean way to do it yet).