On 2019/04/19 9:45, Casey Schaufler wrote: > + hlist_for_each_entry(hp, &security_hook_heads.inode_setsecctx, list) { > + if (strncmp(ctx, hp->lsm, strlen(hp->lsm))) { > + WARN_ONCE(1, "security_inode_setsecctx form1 error\n"); > + rc = -EINVAL; > + break; > + } Will you avoid using WARN*() ? Since syzbot tests using panic_on_warn == 1, this WARN_ONCE() will act as panic().