Lines Matching defs:work
7 static void irdma_disconnect_worker(struct work_struct *work);
3267 /* Handles CM event work items send to Iwarp core */
3442 struct disconn_work *work;
3445 work = kzalloc(sizeof(*work), GFP_ATOMIC);
3446 if (!work)
3455 kfree(work);
3461 work->iwqp = iwqp;
3462 INIT_WORK(&work->work, irdma_disconnect_worker);
3463 queue_work(iwdev->cleanup_wq, &work->work);
3598 * @work: points or disconn structure
3600 static void irdma_disconnect_worker(struct work_struct *work)
3602 struct disconn_work *dwork = container_of(work, struct disconn_work, work);
4218 * @work: pointer of cm event info.
4220 static void irdma_cm_event_handler(struct work_struct *work)
4222 struct irdma_cm_event *event = container_of(work, struct irdma_cm_event, event_work);