OPTION(bdev_nvme_unbind_from_kernel, OPT_BOOL, false)
OPTION(bdev_nvme_retry_count, OPT_INT, -1) // -1 means by default which is 4
+OPTION(objectstore_blackhole, OPT_BOOL, false)
+
OPTION(bluefs_alloc_size, OPT_U64, 1048576)
OPTION(bluefs_max_prefetch, OPT_U64, 1048576)
OPTION(bluefs_min_log_runway, OPT_U64, 1048576) // alloc when we get this low
Context *onreadable_sync;
ObjectStore::Transaction::collect_contexts(
tls, &onreadable, &ondisk, &onreadable_sync);
- if (g_conf->filestore_blackhole) {
- dout(0) << "queue_transactions filestore_blackhole = TRUE, dropping transaction" << dendl;
+
+ if (g_conf->objectstore_blackhole) {
+ dout(0) << __func__ << " objectstore_blackhole = TRUE, dropping transaction"
+ << dendl;
delete ondisk;
delete onreadable;
delete onreadable_sync;