| 21 | } |
| 22 | |
| 23 | int __ceph_plugin_init(CephContext *cct, const std::string& type, |
| 24 | const std::string& name) { |
| 25 | auto plugin_registry = cct->get_plugin_registry(); |
| 26 | return plugin_registry->add( |
| 27 | type, name, new librbd::plugin::WriteLogImageCache<librbd::ImageCtx>(cct)); |
| 28 | } |
| 29 | |
| 30 | } // extern "C" |
| 31 |
nothing calls this directly
no test coverage detected