diff options
author | Sage Weil <sage@newdream.net> | 2011-12-01 08:06:52 -0800 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2011-12-02 09:27:54 -0800 |
commit | 2151937d7ce491bfbe269a1ae742c6686904474c (patch) | |
tree | 4aa64db4b4decc92cd8ee7c634a6d71546ab69f9 /fs/ceph | |
parent | 224736d9113ab4a7cf3f05c05377492bd99b4b02 (diff) | |
download | linux-2151937d7ce491bfbe269a1ae742c6686904474c.tar.bz2 |
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')
-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 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) |