]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
os/bluestore: fix FS creation by fs
authorSage Weil <sage@redhat.com>
Wed, 27 Jan 2016 18:15:21 +0000 (13:15 -0500)
committerSage Weil <sage@redhat.com>
Wed, 27 Jan 2016 18:55:41 +0000 (13:55 -0500)
Reported-by: Allen Samuels <allen.samuels@sandisk.com>
Signed-off-by: Sage Weil <sage@redhat.com>
src/os/bluestore/BlueStore.cc

index f1720810bda206074a79149138217f5d852d7150..5b4fc409ffbe06df6d66f93b35c608f9778a3626 100644 (file)
@@ -827,7 +827,7 @@ int BlueStore::_open_path()
     return r;
   }
   assert(fs == NULL);
-  fs = FS::create(path_fd);
+  fs = FS::create_by_fd(path_fd);
   dout(1) << __func__ << " using fs driver '" << fs->get_name() << "'" << dendl;
   return 0;
 }