From 260c8201a8a2fc2349b7373b4ddd886e738091ae Mon Sep 17 00:00:00 2001 From: Greg Farnum Date: Thu, 12 Feb 2015 19:23:43 -0800 Subject: [PATCH] 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 --- src/client/fuse_ll.cc | 2 -- 1 file changed, 2 deletions(-) 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) -- 2.47.3