recv_work
INIT_WORK(&args->work, recv_work);
INIT_WORK(&args->work, recv_work);
container_of(work, struct capi20_appl, recv_work);
queue_work(kcapi_wq, &ap->recv_work);
INIT_WORK(&ap->recv_work, recv_handler);
struct work_struct recv_work;
struct nfcsim *dev = container_of(work, struct nfcsim, recv_work);
schedule_work(&dev->recv_work);
struct work_struct recv_work;
INIT_WORK(&dev->recv_work, nfcsim_recv_wq);
cancel_work_sync(&dev->recv_work);
INIT_WORK(&fip->recv_work, fcoe_ctlr_recv_work);
schedule_work(&fip->recv_work);
static void fcoe_ctlr_recv_work(struct work_struct *recv_work)
fip = container_of(recv_work, struct fcoe_ctlr, recv_work);
cancel_work_sync(&fip->recv_work);
struct work_struct recv_work;