On Tue, Jun 2, 2020 at 8:30 PM Cong Wang <xiyou.wangc...@gmail.com> wrote: > if (ops->start) { > - genl_lock(); > + if (!ctx->family->parallel_ops) > + genl_lock(); > rc = ops->start(cb); > - genl_unlock(); > + if (!ctx->family->parallel_ops) > + genl_unlock(); > }
Hmm, wg_get_device_start() uses cb->data, so I have to install it before this. Will send v2. Thanks.