Which is currently unused.
Signed-off-by: xie xingguo <xie.xingguo@zte.com.cn>
txc->wal_txn = new bluestore_wal_transaction_t;
}
txc->wal_txn->ops.push_back(bluestore_wal_op_t());
- txc->wal_op_onodes.push_back(o);
return &txc->wal_txn->ops.back();
}
}
assert(txc->ioc.pending_aios.empty());
- vector<OnodeRef>::iterator q = txc->wal_op_onodes.begin();
for (list<bluestore_wal_op_t>::iterator p = wt.ops.begin();
p != wt.ops.end();
- ++p, ++q) {
+ ++p) {
int r = _do_wal_op(txc, *p);
assert(r == 0);
}
boost::intrusive::list_member_hook<> wal_queue_item;
bluestore_wal_transaction_t *wal_txn; ///< wal transaction (if any)
- vector<OnodeRef> wal_op_onodes;
bool kv_submitted = false; ///< true when we've been submitted to kv db