Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2151937d authored by Sage Weil's avatar Sage Weil
Browse files

ceph: fix rasize reporting by ceph_show_options



Fix typo.

Reported-by: default avatarmowang da <whooya.xxl@gmail.com>
Signed-off-by: default avatarSage Weil <sage@newdream.net>
parent 224736d9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)