]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
src/os/bluestore/BlueStore.h: fix typo
authorShinobu Kinjo <ceph@ceph-stack.redhat.com>
Sat, 7 May 2016 06:00:50 +0000 (02:00 -0400)
committerShinobu Kinjo <ceph@ceph-stack.redhat.com>
Sat, 7 May 2016 06:00:50 +0000 (02:00 -0400)
Signed-off-by: Shinobu Kinjo <shinobu@linux.com>
src/os/bluestore/BlueStore.h

index 4ad9e4a3f6ab781df5494916e49c328bdac20306..f09a08532fc3a5593065dc21dcf43e601192ff49 100644 (file)
@@ -374,7 +374,7 @@ public:
     uint64_t last_seq = 0;
 
     OpSequencer()
-       //set the qlock to to PTHREAD_MUTEX_RECURSIVE mode
+       //set the qlock to PTHREAD_MUTEX_RECURSIVE mode
       : parent(NULL),
        wal_apply_lock(wal_apply_mutex, std::defer_lock) {
     }
@@ -602,7 +602,7 @@ private:
 
   void _assign_nid(TransContext *txc, OnodeRef o);
 
-  void _dump_onode(OnodeRef o, int log_leverl=30);
+  void _dump_onode(OnodeRef o, int log_level=30);
 
   TransContext *_txc_create(OpSequencer *osr);
   void _txc_release(TransContext *txc, CollectionRef& c, OnodeRef& onode,
@@ -830,7 +830,7 @@ public:
     return fsid;
   }
 
-  uint64_t estimate_objects_overhead(uint64_t num_objects) override { 
+  uint64_t estimate_objects_overhead(uint64_t num_objects) override {
     return num_objects * 300; //assuming per-object overhead is 300 bytes
   }