libceph: add function to ensure notifies are complete
authorJosh Durgin <josh.durgin@inktank.com>
Thu, 29 Aug 2013 04:43:09 +0000 (21:43 -0700)
committerJosh Durgin <josh.durgin@inktank.com>
Mon, 9 Sep 2013 18:15:49 +0000 (11:15 -0700)
commitdd935f44a40f8fb02aff2cc0df2269c92422df1c
treec5353ebc8cdf9d6aacb1c0f386f957540c019d66
parenta8d436f015b627a55ec3b1d15f13d6ab92dd892b
libceph: add function to ensure notifies are complete

Without a way to flush the osd client's notify workqueue, a watch
event that is unregistered could continue receiving callbacks
indefinitely.

Unregistering the event simply means no new notifies are added to the
queue, but there may still be events in the queue that will call the
watch callback for the event. If the queue is flushed after the event
is unregistered, the caller can be sure no more watch callbacks will
occur for the canceled watch.

Signed-off-by: Josh Durgin <josh.durgin@inktank.com>
Reviewed-by: Sage Weil <sage@inktank.com>
Reviewed-by: Alex Elder <elder@linaro.org>
include/linux/ceph/osd_client.h
net/ceph/osd_client.c