On Fri, 2020-10-02 at 10:19 -0700, Mark Bloch wrote: > > On 10/2/2020 10:05, Saeed Mahameed wrote: > > On Thu, 2020-10-01 at 16:24 -0700, Jakub Kicinski wrote: > > > On Thu, 1 Oct 2020 12:52:39 -0700 sa...@kernel.org wrote: > > > > - for (; i >= 0; i--) { > > > > + for (--i; i >= 0; i--) { > > > > > > while (i--) > > > > while(--i) > > It has to be: while (i--) > Case of i=0, >
woops ! while (i--) it is. Thanks Mark.