On Fri, Aug 21, 2020 at 12:34 AM Alexei Starovoitov <alexei.starovoitov@xxxxxxxxx> wrote: [...] > > - if (strstr(log_buf, err_str) == 0) > > + if (err_str != NULL && strstr(log_buf, err_str) == 0) > > I got rid of '!= NULL', since it doesn't fit kernel coding style and > applied to bpf tree. Thanks Thank you! -- WBR, Yauheni