summaryrefslogtreecommitdiffstats
path: root/src/journal/Journaler.h
diff options
context:
space:
mode:
authorVenky Shankar <vshankar@redhat.com>2016-07-07 08:50:52 +0200
committerVenky Shankar <vshankar@redhat.com>2016-08-07 15:24:00 +0200
commit3492153d36a3fa2a3f713eff6a81bfa31937e31f (patch)
treef9981e61d0fd54252ccfa5f55c3118cb15e818c1 /src/journal/Journaler.h
parenttest: fix CreateImageRequest unit test case (diff)
downloadceph-3492153d36a3fa2a3f713eff6a81bfa31937e31f.tar.xz
ceph-3492153d36a3fa2a3f713eff6a81bfa31937e31f.zip
journaler: remove ununsed synchronous API routines
Synchronous callers now call the asynchronous version wrapped around C_SaferCond. Also take care of mocked methods. Fixes: http://tracker.ceph.com/issues/15321 Signed-off-by: Venky Shankar <vshankar@redhat.com>
Diffstat (limited to 'src/journal/Journaler.h')
-rw-r--r--src/journal/Journaler.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/journal/Journaler.h b/src/journal/Journaler.h
index 6c38a396281..49d1f67aec9 100644
--- a/src/journal/Journaler.h
+++ b/src/journal/Journaler.h
@@ -58,11 +58,8 @@ public:
const std::string &client_id, const Settings &settings);
~Journaler();
- int exists(bool *header_exists) const;
void exists(Context *on_finish) const;
- int create(uint8_t order, uint8_t splay_width, int64_t pool_id);
void create(uint8_t order, uint8_t splay_width, int64_t pool_id, Context *ctx);
- int remove(bool force);
void remove(bool force, Context *on_finish);
void init(Context *on_init);