]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
os/ObjectStore: drop sync()
authorSage Weil <sage@redhat.com>
Mon, 17 Aug 2015 19:22:57 +0000 (15:22 -0400)
committerSage Weil <sage@redhat.com>
Wed, 19 Aug 2015 21:03:56 +0000 (17:03 -0400)
No callers.

Signed-off-by: Sage Weil <sage@redhat.com>
src/os/FileStore.h
src/os/KeyValueStore.h
src/os/ObjectStore.h

index fdff2742cac2e8eb4c79235517737cf2d12921cd..ad14d91b3da9b8eb7cd9fd1cd92797d0b86facc1 100644 (file)
@@ -572,7 +572,6 @@ public:
   void do_force_sync();
   void start_sync(Context *onsafe);
   void sync();
-  using JournalingObjectStore::sync;
   void _flush_op_queue();
   void flush();
   void sync_and_flush();
index 1e333429e9f952517ea279941567ad504a0c12f5..242c82f47323cf86c24c4ba4175342b47d890000 100644 (file)
@@ -591,9 +591,6 @@ class KeyValueStore : public ObjectStore,
                       BufferTransaction &t);
 
   void start_sync() {}
-  void sync() {}
-  using ObjectStore::sync;
-  void flush() {}
 
   void set_fsid(uuid_d u) { fsid = u; }
   uuid_d get_fsid() { return fsid; }
index 489ff4dbccd29e00b67f8f4ffb845170d20c7008..90f4ac3fe4c99050b859955544137f37a087e6f7 100644 (file)
@@ -2098,7 +2098,6 @@ public:
     ) = 0;
 
   virtual void sync(Context *onsync) {}
-  virtual void sync() {}
 
   virtual int flush_journal() { return -EOPNOTSUPP; }