Re: [PATCH net-next] net: introduce budget_squeeze to help us tune rx behavior
From: Stephen Hemminger
Date: Sat Mar 11 2023 - 12:14:18 EST
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?