Lines Matching refs:event_work
2316 struct ceph_osd_event_work *event_work = in do_event_work() local
2318 struct ceph_osd_event *event = event_work->event; in do_event_work()
2319 u64 ver = event_work->ver; in do_event_work()
2320 u64 notify_id = event_work->notify_id; in do_event_work()
2321 u8 opcode = event_work->opcode; in do_event_work()
2327 kfree(event_work); in do_event_work()
2342 struct ceph_osd_event_work *event_work; in handle_watch_notify() local
2363 event_work = kmalloc(sizeof(*event_work), GFP_NOIO); in handle_watch_notify()
2364 if (!event_work) { in handle_watch_notify()
2369 INIT_WORK(&event_work->work, do_event_work); in handle_watch_notify()
2370 event_work->event = event; in handle_watch_notify()
2371 event_work->ver = ver; in handle_watch_notify()
2372 event_work->notify_id = notify_id; in handle_watch_notify()
2373 event_work->opcode = opcode; in handle_watch_notify()
2375 queue_work(osdc->notify_wq, &event_work->work); in handle_watch_notify()