mirror of
https://github.com/ceph/ceph
synced 2024-12-28 14:34:13 +00:00
os/bluestore: define PREFIX_ALLOC_BITMAP
This was hard-coded to 'b'. Signed-off-by: Sage Weil <sage@redhat.com>
This commit is contained in:
parent
895952f2c2
commit
87c1f574cd
@ -65,6 +65,7 @@ const string PREFIX_OBJ = "O"; // object name -> onode_t
|
||||
const string PREFIX_OMAP = "M"; // u64 + keyname -> value
|
||||
const string PREFIX_DEFERRED = "L"; // id -> deferred_transaction_t
|
||||
const string PREFIX_ALLOC = "B"; // u64 offset -> u64 length (freelist)
|
||||
const string PREFIX_ALLOC_BITMAP = "b"; // (see BitmapFreelistManager)
|
||||
const string PREFIX_SHARED_BLOB = "X"; // u64 offset -> shared_blob_t
|
||||
|
||||
// write a label in the first block. always use this size. note that
|
||||
@ -11550,7 +11551,7 @@ void BlueStore::generate_db_histogram(Formatter *f)
|
||||
} else if (key.first == PREFIX_DEFERRED) {
|
||||
hist.update_hist_entry(hist.key_hist, PREFIX_DEFERRED, key_size, value_size);
|
||||
num_deferred++;
|
||||
} else if (key.first == PREFIX_ALLOC || key.first == "b" ) {
|
||||
} else if (key.first == PREFIX_ALLOC || key.first == PREFIX_ALLOC_BITMAP) {
|
||||
hist.update_hist_entry(hist.key_hist, PREFIX_ALLOC, key_size, value_size);
|
||||
num_alloc++;
|
||||
} else if (key.first == PREFIX_SHARED_BLOB) {
|
||||
|
Loading…
Reference in New Issue
Block a user