mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 22:51:35 +00:00
ceph: report f_bfree based on kb_avail rather than diffing.
Reviewed-by: Yehuda Sadeh <yehuda@hq.newdream.net> Signed-off-by: Greg Farnum <gregory.farnum@dreamhost.com>
This commit is contained in:
parent
e77dc3e9c0
commit
8f04d42276
@ -73,8 +73,7 @@ static int ceph_statfs(struct dentry *dentry, struct kstatfs *buf)
|
||||
*/
|
||||
buf->f_bsize = 1 << CEPH_BLOCK_SHIFT;
|
||||
buf->f_blocks = le64_to_cpu(st.kb) >> (CEPH_BLOCK_SHIFT-10);
|
||||
buf->f_bfree = (le64_to_cpu(st.kb) - le64_to_cpu(st.kb_used)) >>
|
||||
(CEPH_BLOCK_SHIFT-10);
|
||||
buf->f_bfree = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10);
|
||||
buf->f_bavail = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10);
|
||||
|
||||
buf->f_files = le64_to_cpu(st.num_objects);
|
||||
|
Loading…
Reference in New Issue
Block a user