On Sun, 12 Mar 2023 00:36:14 +0800 Jason Xing <kerneljasonxing@xxxxxxxxx> wrote: > - for (;;) { > + for (; is_continue;) { Easier to read this as a while (is_continue) { but what is wrong with using break; instead?
On Sun, 12 Mar 2023 00:36:14 +0800 Jason Xing <kerneljasonxing@xxxxxxxxx> wrote: > - for (;;) { > + for (; is_continue;) { Easier to read this as a while (is_continue) { but what is wrong with using break; instead?