mirror of
https://github.com/ceph/ceph
synced 2025-02-23 11:07:35 +00:00
osd/osd_types: fix description of store_statfs_t::available field
It's bytes, not blocks. Signed-off-by: Sage Weil <sage@redhat.com>
This commit is contained in:
parent
abd84f4f1b
commit
976189d7b3
@ -4315,10 +4315,10 @@ struct PromoteCounter {
|
||||
+*/
|
||||
struct store_statfs_t
|
||||
{
|
||||
uint64_t available = 0; // Free blocks available
|
||||
|
||||
uint64_t blocks = 0; // Total data blocks
|
||||
uint32_t bsize = 0; // Optimal transfer block size
|
||||
uint64_t available = 0; // Free bytes available
|
||||
|
||||
int64_t allocated = 0; // Bytes allocated by the store
|
||||
int64_t stored = 0; // Bytes actually stored by the user
|
||||
|
Loading…
Reference in New Issue
Block a user