On Thu, Feb 29, 2024 at 7:37 PM Alexei Starovoitov <alexei.starovoitov@xxxxxxxxx> wrote: > > +#define ARR_SZ 1000000 > +int zero; > +char arr[ARR_SZ]; > + > +SEC("socket") > +__success __retval(0xd495cdc0) > +int cond_break1(const void *ctx) > +{ > + unsigned int i; > + unsigned int sum = 0; This is the reason for CI -no_alu32 fail. I'll fix it in the next revision with: int cond_break1(const void *ctx) { - unsigned int i; + unsigned long i; unsigned int sum = 0;