]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
os/bluestore: drop unused TransContext mutex and cond
authorSage Weil <sage@redhat.com>
Tue, 5 Jan 2016 16:12:27 +0000 (11:12 -0500)
committerSage Weil <sage@redhat.com>
Fri, 8 Jan 2016 18:10:19 +0000 (13:10 -0500)
Signed-off-by: Sage Weil <sage@redhat.com>
src/os/bluestore/BlueStore.h

index e5c60afa74f39787f629f5a42f0ec5ee020daacb..3a5ddaf5fee01e0ed50cf90de2b22c8a6c9c64ae 100644 (file)
@@ -278,9 +278,6 @@ public:
 
     IOContext ioc;
 
-    Mutex lock;
-    Cond cond;
-
     CollectionRef first_collection;  ///< first referenced collection
 
     TransContext(OpSequencer *o)
@@ -292,8 +289,7 @@ public:
        onreadable(NULL),
        onreadable_sync(NULL),
        wal_txn(NULL),
-       ioc(this),
-       lock("BlueStore::TransContext::lock") {
+       ioc(this) {
       //cout << "txc new " << this << std::endl;
     }
     ~TransContext() {