repo
stringlengths
1
152
file
stringlengths
15
205
code
stringlengths
0
41.6M
file_length
int64
0
41.6M
avg_line_length
float64
0
1.81M
max_line_length
int64
0
12.7M
extension_type
stringclasses
90 values
null
ceph-main/src/tools/rados/RadosImport.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2015 Red Hat * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2....
1,120
23.369565
84
h
null
ceph-main/src/tools/rados/rados.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2004-2006 Sage Weil <sage@newdream.net> * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General P...
128,854
29.498225
180
cc
null
ceph-main/src/tools/rbd/ArgumentTypes.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "include/rbd/features.h" #include "common/config_proxy.h" #include "common/strtol.h" #include "common/Formatter.h" #i...
19,433
32.681109
97
cc
null
ceph-main/src/tools/rbd/ArgumentTypes.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_ARGUMENT_TYPES_H #define CEPH_RBD_ARGUMENT_TYPES_H #include "include/int_types.h" #include <set> #include <string> #include <vector> #include <boost/any.hpp> #include <boost/program_options.hpp> #include...
9,170
36.432653
82
h
null
ceph-main/src/tools/rbd/IndentStream.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/IndentStream.h" namespace rbd { int IndentBuffer::overflow (int c) { if (traits_type::eq_int_type(traits_type::eof(), c)) { return traits_type::not_eof(c); } int r; switch (c) { case '...
1,532
24.55
75
cc
null
ceph-main/src/tools/rbd/IndentStream.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_INDENT_STREAM_H #define CEPH_RBD_INDENT_STREAM_H #include "include/int_types.h" #include <iostream> #include <streambuf> #include <iomanip> namespace rbd { class IndentBuffer : public std::streambuf { ...
1,429
22.442623
72
h
null
ceph-main/src/tools/rbd/MirrorDaemonServiceInfo.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/ceph_json.h" #include "common/errno.h" #include "include/rados/librados.hpp" #include "include/stringify.h" #include "tools/rbd/MirrorDaemonServiceInfo.h" #include <boost/scope_exit.hpp> #include <iostre...
8,701
27.253247
78
cc
null
ceph-main/src/tools/rbd/MirrorDaemonServiceInfo.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_MIRROR_DAEMON_SERVICE_INFO_H #define CEPH_RBD_MIRROR_DAEMON_SERVICE_INFO_H #include "include/rados/librados_fwd.hpp" #include "tools/rbd/ArgumentTypes.h" #include <iosfwd> #include <list> #include <map>...
1,886
22.886076
80
h
null
ceph-main/src/tools/rbd/OptionPrinter.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/OptionPrinter.h" #include "tools/rbd/IndentStream.h" #include "include/ceph_assert.h" namespace rbd { namespace po = boost::program_options; const std::string OptionPrinter::POSITIONAL_ARGUMENTS("Po...
5,415
32.432099
83
cc
null
ceph-main/src/tools/rbd/OptionPrinter.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_OPTION_PRINTER_H #define CEPH_RBD_OPTION_PRINTER_H #include "include/int_types.h" #include <string> #include <vector> #include <boost/algorithm/string.hpp> #include <boost/program_options.hpp> namespace...
1,207
26.454545
73
h
null
ceph-main/src/tools/rbd/Schedule.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/Formatter.h" #include "common/TextTable.h" #include "common/ceph_json.h" #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Schedule.h" #include "tools/rbd/Utils.h" #include <iostream> #include <re...
9,856
25.785326
80
cc
null
ceph-main/src/tools/rbd/Schedule.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_SCHEDULE_H #define CEPH_RBD_SCHEDULE_H #include "json_spirit/json_spirit.h" #include <iostream> #include <list> #include <map> #include <string> #include <boost/program_options.hpp> namespace ceph { cl...
1,759
24.882353
80
h
null
ceph-main/src/tools/rbd/Shell.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/Shell.h" #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/IndentStream.h" #include "tools/rbd/OptionPrinter.h" #include "common/ceph_argparse.h" #include "common/config.h" #include "global/glob...
16,481
32.77459
97
cc
null
ceph-main/src/tools/rbd/Shell.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_SHELL_H #define CEPH_RBD_SHELL_H #include "include/int_types.h" #include <set> #include <string> #include <vector> #include <boost/program_options.hpp> namespace rbd { class Shell { public: typedef s...
2,482
31.246753
80
h
null
ceph-main/src/tools/rbd/Utils.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/Utils.h" #include "include/ceph_assert.h" #include "include/Context.h" #include "include/encoding.h" #include "common/common_init.h" #include "include/stringify.h" #include "include/rbd/features.h" #in...
35,865
28.789037
81
cc
null
ceph-main/src/tools/rbd/Utils.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_UTILS_H #define CEPH_RBD_UTILS_H #include "include/compat.h" #include "include/int_types.h" #include "include/rados/librados.hpp" #include "include/rbd/librbd.hpp" #include "tools/rbd/ArgumentTypes.h" #i...
9,916
33.919014
79
h
null
ceph-main/src/tools/rbd/rbd.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/Shell.h" int main(int argc, const char **argv) { rbd::Shell shell; return shell.execute(argc, argv); }
227
19.727273
70
cc
null
ceph-main/src/tools/rbd/action/Bench.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "common/errno.h" #include "common/strtol.h" #include "common/ceph_mutex.h" #include "include/types.h" #include "globa...
17,128
28.032203
111
cc
null
ceph-main/src/tools/rbd/action/Children.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "common/errno.h" #include "common/Formatter.h" #include <iostream> #include <boost/program_options.hpp> namespace rb...
4,826
27.732143
79
cc
null
ceph-main/src/tools/rbd/action/Clone.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "common/errno.h" #include <iostream> #include <boost/program_options.hpp> namespace rbd { namespace action { namespa...
2,991
28.92
80
cc
null
ceph-main/src/tools/rbd/action/Config.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/Formatter.h" #include "common/TextTable.h" #include "common/ceph_context.h" #include "common/ceph_json.h" #include "common/escape.h" #include "common/errno.h" #include "common/options.h" #include "global/...
23,927
25.825112
80
cc
null
ceph-main/src/tools/rbd/action/Copy.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "common/errno.h" #include <iostream> #include <boost/program_options.hpp> namespace rbd { namespace action { namespa...
5,909
29.153061
89
cc
null
ceph-main/src/tools/rbd/action/Create.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "common/ceph_mutex.h" #include "common/config_proxy.h" #include "common/errno.h" #include "global/global_context.h" #...
6,794
25.337209
100
cc
null
ceph-main/src/tools/rbd/action/Device.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "acconfig.h" #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include <boost/program_options.hpp> #include "include/ceph_assert.h" namespace rbd { namespace action { namespace at = argument_...
10,206
33.023333
84
cc
null
ceph-main/src/tools/rbd/action/Diff.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "common/errno.h" #include "common/Formatter.h" #include "common/TextTable.h" #include <iostream> #include <boost/prog...
3,928
26.475524
79
cc
null
ceph-main/src/tools/rbd/action/DiskUsage.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "include/types.h" #include "include/stringify.h" #include "common/errno.h" #include "common/Formatter.h" #include "co...
11,669
29.873016
121
cc
null
ceph-main/src/tools/rbd/action/Encryption.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "include/compat.h" #include "include/scope_guard.h" #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "common/errno.h" #include <fstream> #include <iostream> ...
3,826
31.432203
79
cc
null
ceph-main/src/tools/rbd/action/Export.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "include/compat.h" #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "include/Context.h" #include "common/errno.h" #include "common/Throttle.h" #include "incl...
17,153
25.229358
94
cc
null
ceph-main/src/tools/rbd/action/Feature.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "include/stringify.h" #include "common/errno.h" #include <iostream> #include <map> #include <boost/program_options.hp...
3,523
29.119658
79
cc
null
ceph-main/src/tools/rbd/action/Flatten.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "common/errno.h" #include <iostream> #include <boost/program_options.hpp> namespace rbd { namespace action { namespa...
2,483
25.709677
79
cc
null
ceph-main/src/tools/rbd/action/Ggate.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <sys/param.h> #include <errno.h> #include <unistd.h> #include "include/stringify.h" #include "common/SubProcess.h" #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" ...
4,794
25.491713
80
cc
null
ceph-main/src/tools/rbd/action/Group.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <iostream> #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "include/rbd_types.h" #include "cls/rbd/cls_rbd_types.h" #include "common/errno.h" #include "com...
27,199
28.791895
85
cc
null
ceph-main/src/tools/rbd/action/ImageMeta.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "common/errno.h" #include "common/Formatter.h" #include "common/TextTable.h" #include <iostream> #include <boost/prog...
9,620
26.806358
92
cc
null
ceph-main/src/tools/rbd/action/Import.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "include/Context.h" #include "common/blkdev.h" #include "common/debug.h" #include "common/errno.h" #include "common/T...
27,231
25.260366
109
cc
null
ceph-main/src/tools/rbd/action/Info.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "include/types.h" #include "include/stringify.h" #include "common/errno.h" #include "common/Formatter.h" #include <io...
13,586
27.786017
82
cc
null
ceph-main/src/tools/rbd/action/Journal.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "common/Cond.h" #include "common/Formatter.h" #include "common/ceph_json.h" #include "common/errno.h" #include "commo...
33,778
25.980032
87
cc
null
ceph-main/src/tools/rbd/action/Kernel.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "acconfig.h" #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "include/krbd.h" #include "include/stringify.h" #include "include/uuid.h" #include "common/conf...
20,752
29.519118
99
cc
null
ceph-main/src/tools/rbd/action/List.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "include/Context.h" #include "include/stringify.h" #include "include/types.h" #include "common/errno.h" #include "com...
9,866
27.435159
104
cc
null
ceph-main/src/tools/rbd/action/Lock.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "common/errno.h" #include "common/Formatter.h" #include "common/TextTable.h" #include <iostream> #include <boost/prog...
7,862
27.082143
80
cc
null
ceph-main/src/tools/rbd/action/MergeDiff.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #define _LARGEFILE64_SOURCE #include <sys/types.h> #include <unistd.h> #include "include/compat.h" #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "common/safe_io.h...
10,854
22.752735
102
cc
null
ceph-main/src/tools/rbd/action/Migration.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "include/compat.h" #include "common/errno.h" #include "common/safe_io.h" #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include <sys/types.h> #include <fcntl.h> ...
13,322
29.983721
87
cc
null
ceph-main/src/tools/rbd/action/MirrorImage.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2016 SUSE LINUX GmbH * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License ve...
19,713
31.531353
90
cc
null
ceph-main/src/tools/rbd/action/MirrorPool.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/MirrorDaemonServiceInfo.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "include/buffer.h" #include "include/Context.h" #include "include/stri...
54,433
29.701636
86
cc
null
ceph-main/src/tools/rbd/action/MirrorSnapshotSchedule.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Schedule.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "common/ceph_context.h" #include "common/ceph_json.h" #include "common/errno.h" #incl...
8,440
25.133127
87
cc
null
ceph-main/src/tools/rbd/action/Namespace.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "common/errno.h" #include "include/stringify.h" #include "common/Formatter.h" #include "common/TextTable.h" #include...
5,038
25.244792
79
cc
null
ceph-main/src/tools/rbd/action/Nbd.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "include/stringify.h" #include "common/SubProcess.h" #include <iostream> #include <boost/algorithm/string.hpp> #inclu...
11,882
29.469231
91
cc
null
ceph-main/src/tools/rbd/action/ObjectMap.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "common/errno.h" #include <iostream> #include <boost/program_options.hpp> namespace rbd { namespace action { namespa...
3,767
27.545455
76
cc
null
ceph-main/src/tools/rbd/action/Perf.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "include/stringify.h" #include "common/ceph_context.h" #include "common/ceph_json.h" #include "common/errno.h" #inclu...
19,365
25.972145
86
cc
null
ceph-main/src/tools/rbd/action/PersistentCache.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "include/types.h" #include "include/rbd_types.h" #include "include/stringify.h" #include "common/errno.h" #include "c...
3,569
28.02439
79
cc
null
ceph-main/src/tools/rbd/action/Pool.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "include/stringify.h" #include "common/errno.h" #include "common/Formatter.h" #include <iostream> #include <boost/pro...
5,047
29.969325
81
cc
null
ceph-main/src/tools/rbd/action/Remove.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "common/errno.h" #include "include/stringify.h" #include <iostream> #include <boost/program_options.hpp> namespace r...
5,037
30.098765
80
cc
null
ceph-main/src/tools/rbd/action/Rename.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "common/errno.h" #include <iostream> #include <boost/program_options.hpp> namespace rbd { namespace action { namespa...
2,878
29.305263
80
cc
null
ceph-main/src/tools/rbd/action/Resize.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "common/errno.h" #include <iostream> #include <boost/program_options.hpp> namespace rbd { namespace action { namespa...
3,434
26.701613
94
cc
null
ceph-main/src/tools/rbd/action/Snap.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "include/types.h" #include "include/stringify.h" #include "common/errno.h" #include "common/Formatter.h" #include "co...
29,881
29.711202
93
cc
null
ceph-main/src/tools/rbd/action/Sparsify.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "common/errno.h" #include <iostream> #include <boost/program_options.hpp> namespace rbd { namespace action { namespa...
2,271
26.373494
79
cc
null
ceph-main/src/tools/rbd/action/Status.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/errno.h" #include "common/Formatter.h" #include "json_spirit/json_spirit.h" #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "include/rbd_types.h" #i...
13,634
36.254098
95
cc
null
ceph-main/src/tools/rbd/action/Trash.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2017 SUSE LINUX GmbH * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License ve...
16,639
29.588235
92
cc
null
ceph-main/src/tools/rbd/action/TrashPurgeSchedule.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Schedule.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "common/ceph_context.h" #include "common/ceph_json.h" #include "common/errno.h" #incl...
9,404
25.418539
78
cc
null
ceph-main/src/tools/rbd/action/Ubbd.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/errno.h" #include "common/Formatter.h" #include "common/TextTable.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include <boost/algorithm/string/predicate.hpp> #include <boost/scope_exit.h...
7,271
27.743083
86
cc
null
ceph-main/src/tools/rbd/action/Watch.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "include/rbd_types.h" #include "librbd/WatchNotifyTypes.h" #include "common/errno.h" #include <iostream> #include <bo...
4,189
26.933333
80
cc
null
ceph-main/src/tools/rbd/action/Wnbd.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd/ArgumentTypes.h" #include "tools/rbd/Shell.h" #include "tools/rbd/Utils.h" #include "include/stringify.h" #include "common/SubProcess.h" #include <iostream> #include <boost/algorithm/string.hpp> #inclu...
4,551
25.312139
85
cc
null
ceph-main/src/tools/rbd_ggate/Driver.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <stdlib.h> #include "common/debug.h" #include "common/errno.h" #include "Driver.h" #include "Request.h" #define dout_context g_ceph_context #define dout_subsys ceph_subsys_rbd #undef dout_prefix #define dout_pr...
3,501
20.096386
80
cc
null
ceph-main/src/tools/rbd_ggate/Driver.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_GGATE_DRIVER_H #define CEPH_RBD_GGATE_DRIVER_H #include <map> #include <string> #include "ggate_drv.h" namespace rbd { namespace ggate { struct Request; class Driver { public: typedef std::pair<std...
987
18.372549
73
h
null
ceph-main/src/tools/rbd_ggate/Request.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_GGATE_REQUEST_H #define CEPH_RBD_GGATE_REQUEST_H #include "ggate_drv.h" namespace rbd { namespace ggate { struct Request { enum Command { Unknown = 0, Write = 1, Read = 2, Flush = 3, ...
936
15.732143
70
h
null
ceph-main/src/tools/rbd_ggate/Server.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/debug.h" #include "common/errno.h" #include "Driver.h" #include "Server.h" #include "Request.h" #define dout_context g_ceph_context #define dout_subsys ceph_subsys_rbd #undef dout_prefix #define dout_pre...
6,259
22.802281
79
cc
null
ceph-main/src/tools/rbd_ggate/Server.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_GGATE_SERVER_H #define CEPH_RBD_GGATE_SERVER_H #include "include/rbd/librbd.hpp" #include "include/xlist.h" #include "common/ceph_mutex.h" #include "common/Thread.h" namespace rbd { namespace ggate { c...
1,803
19.269663
74
h
null
ceph-main/src/tools/rbd_ggate/Watcher.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/debug.h" #include "common/errno.h" #include "Driver.h" #include "Watcher.h" #define dout_context g_ceph_context #define dout_subsys ceph_subsys_rbd #undef dout_prefix #define dout_prefix *_dout << "rbd::...
1,210
23.714286
76
cc
null
ceph-main/src/tools/rbd_ggate/Watcher.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_GGATE_WATCHER_H #define CEPH_RBD_GGATE_WATCHER_H #include "include/rbd/librbd.hpp" namespace rbd { namespace ggate { class Driver; class Watcher : public librbd::UpdateWatchCtx { public: Watcher(Dri...
616
16.628571
70
h
null
ceph-main/src/tools/rbd_ggate/debug.cc
#include "common/debug.h" #include "common/errno.h" #include "debug.h" #define dout_context g_ceph_context #define dout_subsys ceph_subsys_rbd #undef dout_prefix #define dout_prefix *_dout << "rbd::ggate: " extern "C" void debugv(int level, const char *fmt, va_list ap) { char *msg; int saved_errno = errno; ...
1,058
17.910714
64
cc
null
ceph-main/src/tools/rbd_ggate/debug.h
#ifndef CEPH_RBD_GGATE_DEBUG_H #define CEPH_RBD_GGATE_DEBUG_H #ifdef __cplusplus extern "C" { #endif void debug(int level, const char *fmt, ...) __printflike(2, 3); void debugv(int level, const char *fmt, va_list ap) __printflike(2, 0); void err(const char *fmt, ...) __printflike(1, 2); void errx(const char *fmt, ......
405
21.555556
71
h
null
ceph-main/src/tools/rbd_ggate/ggate_drv.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_GGATE_GGATE_DRV_H #define CEPH_RBD_GGATE_GGATE_DRV_H #ifdef __cplusplus extern "C" { #endif #include <sys/param.h> #include <stdbool.h> #include <stdint.h> typedef void *ggate_drv_t; typedef void *gga...
1,618
23.907692
73
h
null
ceph-main/src/tools/rbd_ggate/main.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "include/int_types.h" #include <sys/types.h> #include <stdio.h> #include <stdlib.h> #include <stddef.h> #include <errno.h> #include <string.h> #include <assert.h> #include <iostream> #include <memory> #include...
13,814
25.72147
100
cc
null
ceph-main/src/tools/rbd_mirror/BaseRequest.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_MIRROR_BASE_REQUEST_H #define CEPH_RBD_MIRROR_BASE_REQUEST_H #include "include/Context.h" namespace rbd { namespace mirror { class BaseRequest { public: BaseRequest(Context *on_finish) : m_on_finish...
609
16.941176
70
h
null
ceph-main/src/tools/rbd_mirror/CancelableRequest.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_MIRROR_CANCELABLE_REQUEST_H #define CEPH_RBD_MIRROR_CANCELABLE_REQUEST_H #include "common/RefCountedObj.h" #include "include/Context.h" namespace rbd { namespace mirror { class CancelableRequest : publ...
998
21.2
80
h
null
ceph-main/src/tools/rbd_mirror/ClusterWatcher.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "ClusterWatcher.h" #include "include/stringify.h" #include "common/ceph_json.h" #include "common/debug.h" #include "common/errno.h" #include "cls/rbd/cls_rbd_client.h" #include "librbd/internal.h" #include "librb...
7,708
29.470356
80
cc
null
ceph-main/src/tools/rbd_mirror/ClusterWatcher.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_MIRROR_CLUSTER_WATCHER_H #define CEPH_RBD_MIRROR_CLUSTER_WATCHER_H #include <map> #include <memory> #include <set> #include "common/ceph_context.h" #include "common/ceph_mutex.h" #include "common/Timer....
1,918
24.932432
78
h
null
ceph-main/src/tools/rbd_mirror/ImageDeleter.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2016 SUSE LINUX GmbH * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License ve...
16,376
28.776364
78
cc
null
ceph-main/src/tools/rbd_mirror/ImageDeleter.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2016 SUSE LINUX GmbH * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License ve...
5,576
28.352632
80
h
null
ceph-main/src/tools/rbd_mirror/ImageMap.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/debug.h" #include "common/errno.h" #include "common/Timer.h" #include "librbd/Utils.h" #include "librbd/asio/ContextWQ.h" #include "tools/rbd_mirror/Threads.h" #include "ImageMap.h" #include "image_map/...
18,046
28.829752
96
cc
null
ceph-main/src/tools/rbd_mirror/ImageMap.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_MIRROR_IMAGE_MAP_H #define CEPH_RBD_MIRROR_IMAGE_MAP_H #include <vector> #include "common/ceph_mutex.h" #include "include/Context.h" #include "common/AsyncOpTracker.h" #include "cls/rbd/cls_rbd_types.h"...
5,441
29.745763
94
h
null
ceph-main/src/tools/rbd_mirror/ImageReplayer.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "include/compat.h" #include "common/Formatter.h" #include "common/admin_socket.h" #include "common/debug.h" #include "common/errno.h" #include "include/stringify.h" #include "cls/rbd/cls_rbd_client.h" #include "c...
33,696
27.269295
85
cc
null
ceph-main/src/tools/rbd_mirror/ImageReplayer.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_MIRROR_IMAGE_REPLAYER_H #define CEPH_RBD_MIRROR_IMAGE_REPLAYER_H #include "common/AsyncOpTracker.h" #include "common/ceph_mutex.h" #include "include/rados/librados.hpp" #include "cls/rbd/cls_rbd_types.h"...
8,195
28.912409
78
h
null
ceph-main/src/tools/rbd_mirror/ImageSync.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "ImageSync.h" #include "InstanceWatcher.h" #include "ProgressContext.h" #include "common/debug.h" #include "common/Timer.h" #include "common/errno.h" #include "librbd/DeepCopyRequest.h" #include "librbd/ImageCtx....
12,538
25.678723
79
cc
null
ceph-main/src/tools/rbd_mirror/ImageSync.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef RBD_MIRROR_IMAGE_SYNC_H #define RBD_MIRROR_IMAGE_SYNC_H #include "include/int_types.h" #include "librbd/ImageCtx.h" #include "librbd/Types.h" #include "common/ceph_mutex.h" #include "tools/rbd_mirror/CancelableRe...
4,287
27.210526
70
h
null
ceph-main/src/tools/rbd_mirror/InstanceReplayer.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "include/stringify.h" #include "common/Cond.h" #include "common/Timer.h" #include "common/debug.h" #include "common/errno.h" #include "librbd/Utils.h" #include "librbd/asio/ContextWQ.h" #include "ImageReplayer.h"...
16,149
28.470803
80
cc
null
ceph-main/src/tools/rbd_mirror/InstanceReplayer.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef RBD_MIRROR_INSTANCE_REPLAYER_H #define RBD_MIRROR_INSTANCE_REPLAYER_H #include <map> #include <sstream> #include "common/AsyncOpTracker.h" #include "common/Formatter.h" #include "common/ceph_mutex.h" #include "t...
4,375
30.482014
78
h
null
ceph-main/src/tools/rbd_mirror/InstanceWatcher.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "InstanceWatcher.h" #include "include/stringify.h" #include "common/debug.h" #include "common/errno.h" #include "cls/rbd/cls_rbd_client.h" #include "librbd/AsioEngine.h" #include "librbd/ManagedLock.h" #include "...
38,105
28.516654
80
cc
null
ceph-main/src/tools/rbd_mirror/InstanceWatcher.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_MIRROR_INSTANCE_WATCHER_H #define CEPH_RBD_MIRROR_INSTANCE_WATCHER_H #include <map> #include <memory> #include <set> #include <string> #include <vector> #include "common/AsyncOpTracker.h" #include "libr...
9,612
34.603704
81
h
null
ceph-main/src/tools/rbd_mirror/Instances.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "include/stringify.h" #include "common/Timer.h" #include "common/debug.h" #include "common/errno.h" #include "librbd/Utils.h" #include "librbd/asio/ContextWQ.h" #include "InstanceWatcher.h" #include "Instances.h"...
9,765
26.355742
92
cc
null
ceph-main/src/tools/rbd_mirror/Instances.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_MIRROR_INSTANCES_H #define CEPH_RBD_MIRROR_INSTANCES_H #include <map> #include <vector> #include "include/buffer_fwd.h" #include "include/rados/librados_fwd.hpp" #include "common/AsyncOpTracker.h" #incl...
4,452
25.349112
75
h
null
ceph-main/src/tools/rbd_mirror/LeaderWatcher.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "LeaderWatcher.h" #include "common/Cond.h" #include "common/Timer.h" #include "common/debug.h" #include "common/errno.h" #include "cls/rbd/cls_rbd_client.h" #include "include/stringify.h" #include "librbd/Utils.h...
27,856
25.034579
98
cc
null
ceph-main/src/tools/rbd_mirror/LeaderWatcher.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_MIRROR_LEADER_WATCHER_H #define CEPH_RBD_MIRROR_LEADER_WATCHER_H #include <list> #include <memory> #include <string> #include "common/AsyncOpTracker.h" #include "librbd/ManagedLock.h" #include "librbd/W...
10,829
33.490446
80
h
null
ceph-main/src/tools/rbd_mirror/Mirror.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <signal.h> #include <boost/range/adaptor/map.hpp> #include "common/Formatter.h" #include "common/PriorityCache.h" #include "common/admin_socket.h" #include "common/debug.h" #include "common/errno.h" #include "j...
19,591
24.610458
81
cc
null
ceph-main/src/tools/rbd_mirror/Mirror.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_MIRROR_H #define CEPH_RBD_MIRROR_H #include "common/ceph_context.h" #include "common/ceph_mutex.h" #include "include/rados/librados.hpp" #include "include/utime.h" #include "ClusterWatcher.h" #include "P...
2,376
25.411111
71
h
null
ceph-main/src/tools/rbd_mirror/MirrorStatusUpdater.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "tools/rbd_mirror/MirrorStatusUpdater.h" #include "include/Context.h" #include "include/stringify.h" #include "common/debug.h" #include "common/errno.h" #include "common/Timer.h" #include "librbd/ImageCtx.h" #inc...
11,172
27.072864
79
cc
null
ceph-main/src/tools/rbd_mirror/MirrorStatusUpdater.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_MIRROR_MIRROR_STATUS_UPDATER_H #define CEPH_RBD_MIRROR_MIRROR_STATUS_UPDATER_H #include "include/rados/librados.hpp" #include "common/ceph_mutex.h" #include "cls/rbd/cls_rbd_types.h" #include <list> #inc...
3,803
30.7
79
h
null
ceph-main/src/tools/rbd_mirror/MirrorStatusWatcher.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "MirrorStatusWatcher.h" #include "common/debug.h" #include "common/errno.h" #include "cls/rbd/cls_rbd_client.h" #include "librbd/Utils.h" #define dout_context g_ceph_context #define dout_subsys ceph_subsys_rbd_m...
2,060
26.48
80
cc
null
ceph-main/src/tools/rbd_mirror/MirrorStatusWatcher.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_MIRROR_MIRROR_STATUS_WATCHER_H #define CEPH_RBD_MIRROR_MIRROR_STATUS_WATCHER_H #include "librbd/Watcher.h" namespace librbd { class ImageCtx; namespace asio { struct ContextWQ; } } // namespace librbd ...
1,157
25.318182
75
h
null
ceph-main/src/tools/rbd_mirror/NamespaceReplayer.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "NamespaceReplayer.h" #include "common/Formatter.h" #include "common/debug.h" #include "common/errno.h" #include "cls/rbd/cls_rbd_client.h" #include "librbd/Utils.h" #include "librbd/api/Config.h" #include "librb...
24,303
27.162225
83
cc
null
ceph-main/src/tools/rbd_mirror/NamespaceReplayer.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_RBD_MIRROR_NAMESPACE_REPLAYER_H #define CEPH_RBD_MIRROR_NAMESPACE_REPLAYER_H #include "common/AsyncOpTracker.h" #include "common/ceph_mutex.h" #include "include/rados/librados.hpp" #include "tools/rbd_mirro...
11,836
37.307443
82
h