From: Sage Weil Date: Wed, 17 Aug 2011 19:53:00 +0000 (-0700) Subject: cfuse: take out accidental bad channel add X-Git-Tag: v0.34~74 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d314506442d59024fcb80a76b35d78095261c23e;p=ceph.git cfuse: take out accidental bad channel add This was a brainstorm that snuck into last commit, grr. Signed-off-by: Sage Weil --- diff --git a/src/client/fuse_ll.cc b/src/client/fuse_ll.cc index 2d23deb23d58..9ea7e16d59cb 100644 --- a/src/client/fuse_ll.cc +++ b/src/client/fuse_ll.cc @@ -570,7 +570,6 @@ int ceph_fuse_ll_main(Client *c, int argc, const char *argv[], int fd) // go go gadget fuse struct fuse_args args = FUSE_ARGS_INIT(newargc, (char**)newargv); struct fuse_chan *ch = NULL; - struct fuse_chan *ch_inval = NULL; struct fuse_session *se = NULL; char *mountpoint = NULL; int ret = 0; @@ -604,7 +603,6 @@ int ceph_fuse_ll_main(Client *c, int argc, const char *argv[], int fd) } fuse_session_add_chan(se, ch); - fuse_session_add_chan(se, ch_inval); if (g_conf->fuse_use_invalidate_cb) client->ll_register_ino_invalidate_cb(invalidate_cb, ch);