Re: [dpdk-dev] [PATCH v2] examples/multi_proces: fix Rx packets distribution

2021-11-09 Thread Thomas Monjalon
09/11/2021 12:49, Gregory Etelson: > Hello Thomas, > > > 09/11/2021 10:58, Gregory Etelson: > > > - uint8_t client = 0; > > > + /* > > > + * C99: All objects with static storage > > duration > > > + * shall be initialized (set to their initial > > values) before > > > + * pr

Re: [dpdk-dev] [PATCH v2] examples/multi_proces: fix Rx packets distribution

2021-11-09 Thread Thomas Monjalon
09/11/2021 10:58, Gregory Etelson: > - uint8_t client = 0; > + /* > + * C99: All objects with static storage duration > + * shall be initialized (set to their initial values) before > + * program startup. > + */ Why adding this comment? > + static uint8_t client;