summaryrefslogtreecommitdiffstats
path: root/fs/ceph/super.c
diff options
context:
space:
mode:
authorSage Weil2011-12-01 17:06:52 +0100
committerSage Weil2011-12-02 18:27:54 +0100
commit2151937d7ce491bfbe269a1ae742c6686904474c (patch)
tree4aa64db4b4decc92cd8ee7c634a6d71546ab69f9 /fs/ceph/super.c
parentlibceph: Allocate larger oid buffer in request msgs (diff)
downloadkernel-qcow2-linux-2151937d7ce491bfbe269a1ae742c6686904474c.tar.gz
kernel-qcow2-linux-2151937d7ce491bfbe269a1ae742c6686904474c.tar.xz
kernel-qcow2-linux-2151937d7ce491bfbe269a1ae742c6686904474c.zip
ceph: fix rasize reporting by ceph_show_options
Fix typo. Reported-by: mowang da <whooya.xxl@gmail.com> Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/super.c')
-rw-r--r--fs/ceph/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/super.c b/fs/ceph/super.c
index 8dc73a594a90..b48f15f101a0 100644
--- a/fs/ceph/super.c
+++ b/fs/ceph/super.c
@@ -383,7 +383,7 @@ static int ceph_show_options(struct seq_file *m, struct vfsmount *mnt)
if (fsopt->rsize != CEPH_RSIZE_DEFAULT)
seq_printf(m, ",rsize=%d", fsopt->rsize);
if (fsopt->rasize != CEPH_RASIZE_DEFAULT)
- seq_printf(m, ",rasize=%d", fsopt->rsize);
+ seq_printf(m, ",rasize=%d", fsopt->rasize);
if (fsopt->congestion_kb != default_congestion_kb())
seq_printf(m, ",write_congestion_kb=%d", fsopt->congestion_kb);
if (fsopt->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT)