diff options
author | Ilya Dryomov <idryomov@gmail.com> | 2018-05-03 16:26:55 +0200 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2018-06-04 20:45:56 +0200 |
commit | 6dd4940ba5f96270ad428351cd88daf9ab871a97 (patch) | |
tree | b1786af4c18542b3d8587833cac08e62a6d7fab2 /fs | |
parent | 4985d6f9e50fa48e35a9dbe1726434f987305cae (diff) | |
download | linux-stable-6dd4940ba5f96270ad428351cd88daf9ab871a97.tar.gz linux-stable-6dd4940ba5f96270ad428351cd88daf9ab871a97.tar.bz2 linux-stable-6dd4940ba5f96270ad428351cd88daf9ab871a97.zip |
ceph: show wsize only if non-default
This is how it was before commit 95cca2b44e54 ("ceph: limit osd write
size") went in.
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ceph/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/super.c b/fs/ceph/super.c index b33082e6878f..3c1155803444 100644 --- a/fs/ceph/super.c +++ b/fs/ceph/super.c @@ -551,7 +551,7 @@ static int ceph_show_options(struct seq_file *m, struct dentry *root) if (fsopt->mds_namespace) seq_show_option(m, "mds_namespace", fsopt->mds_namespace); - if (fsopt->wsize) + if (fsopt->wsize != CEPH_MAX_WRITE_SIZE) seq_printf(m, ",wsize=%d", fsopt->wsize); if (fsopt->rsize != CEPH_MAX_READ_SIZE) seq_printf(m, ",rsize=%d", fsopt->rsize); |