Lines Matching refs:event_work
2330 struct ceph_osd_event_work *event_work = in do_event_work() local
2332 struct ceph_osd_event *event = event_work->event; in do_event_work()
2333 u64 ver = event_work->ver; in do_event_work()
2334 u64 notify_id = event_work->notify_id; in do_event_work()
2335 u8 opcode = event_work->opcode; in do_event_work()
2341 kfree(event_work); in do_event_work()
2356 struct ceph_osd_event_work *event_work; in handle_watch_notify() local
2377 event_work = kmalloc(sizeof(*event_work), GFP_NOIO); in handle_watch_notify()
2378 if (!event_work) { in handle_watch_notify()
2383 INIT_WORK(&event_work->work, do_event_work); in handle_watch_notify()
2384 event_work->event = event; in handle_watch_notify()
2385 event_work->ver = ver; in handle_watch_notify()
2386 event_work->notify_id = notify_id; in handle_watch_notify()
2387 event_work->opcode = opcode; in handle_watch_notify()
2389 queue_work(osdc->notify_wq, &event_work->work); in handle_watch_notify()