From: Greg Farnum Date: Fri, 13 Feb 2015 03:23:43 +0000 (-0800) Subject: fuse: do not invoke ll_register_callbacks() on finalize X-Git-Tag: v0.93~1^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=260c8201a8a2fc2349b7373b4ddd886e738091ae;p=ceph.git fuse: do not invoke ll_register_callbacks() on finalize We were passing in a NULL data structure, probably in an attempt to let things clean up -- but our implementation just returns with a NULL pass-in value, so drop it for clarity. Signed-off-by: Greg Farnum --- diff --git a/src/client/fuse_ll.cc b/src/client/fuse_ll.cc index fa968d7a6dbf..50a9d4879f46 100644 --- a/src/client/fuse_ll.cc +++ b/src/client/fuse_ll.cc @@ -864,8 +864,6 @@ CephFuse::Handle::~Handle() void CephFuse::Handle::finalize() { - client->ll_register_callbacks(NULL); - if (se) fuse_remove_signal_handlers(se); if (ch)