Hide block_* fields

This commit is contained in:
Vitaliy Filippov
2019-12-10 00:13:59 +03:00
parent aaea3e1f99
commit a180b4961f
2 changed files with 13 additions and 8 deletions
+8 -3
View File
@@ -266,10 +266,12 @@ class blockstore
std::list<blockstore_operation*> submit_queue; // FIXME: funny thing is that vector is better here
std::vector<obj_ver_id> unsynced_big_writes, unsynced_small_writes;
std::list<blockstore_operation*> in_progress_syncs; // ...and probably here, too
uint64_t block_count;
allocator *data_alloc = NULL;
uint8_t *zero_object;
uint64_t block_count;
uint32_t block_order, block_size;
int meta_fd;
int data_fd;
@@ -359,7 +361,10 @@ public:
// Submission
void enqueue_op(blockstore_operation *op);
// FIXME public morozov
// Unstable writes are added here (map of object_id -> version)
std::map<object_id, uint64_t> unstable_writes;
uint32_t block_order, block_size;
inline uint32_t get_block_size() { return block_size; }
inline uint32_t get_block_order() { return block_order; }
inline uint64_t get_block_count() { return block_count; }
};