diff options
author | Yan, Zheng <zyan@redhat.com> | 2016-01-25 10:44:33 +0800 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2016-03-25 18:51:41 +0100 |
commit | 133e91566ced3e7154db9b68bb3ceb3b30f6900f (patch) | |
tree | 3464891773d1e448f2f1d732d965c42ca4c0e5e7 /fs/ceph/super.c | |
parent | d1eee0c0e13a1eccde3418a12babf9d77860eee9 (diff) | |
download | op-kernel-dev-133e91566ced3e7154db9b68bb3ceb3b30f6900f.zip op-kernel-dev-133e91566ced3e7154db9b68bb3ceb3b30f6900f.tar.gz |
ceph: don't enable rbytes mount option by default
When rbytes mount option is enabled, directory size is recursive
size. Recursive size is not updated instantly. This can cause
directory size to change between successive stat(1)
Signed-off-by: Yan, Zheng <zyan@redhat.com>
Diffstat (limited to 'fs/ceph/super.c')
-rw-r--r-- | fs/ceph/super.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ceph/super.c b/fs/ceph/super.c index c941fd1..e82acc6 100644 --- a/fs/ceph/super.c +++ b/fs/ceph/super.c @@ -439,8 +439,8 @@ static int ceph_show_options(struct seq_file *m, struct dentry *root) if (fsopt->flags & CEPH_MOUNT_OPT_DIRSTAT) seq_puts(m, ",dirstat"); - if ((fsopt->flags & CEPH_MOUNT_OPT_RBYTES) == 0) - seq_puts(m, ",norbytes"); + if ((fsopt->flags & CEPH_MOUNT_OPT_RBYTES)) + seq_puts(m, ",rbytes"); if (fsopt->flags & CEPH_MOUNT_OPT_NOASYNCREADDIR) seq_puts(m, ",noasyncreaddir"); if ((fsopt->flags & CEPH_MOUNT_OPT_DCACHE) == 0) |