diff options
author | Yehuda Sadeh <yehuda@hq.newdream.net> | 2011-07-22 14:12:28 -0400 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2011-07-26 14:29:14 -0400 |
commit | e9852227431a0ed6ceda064f33e4218757acab6c (patch) | |
tree | e48c6a6ffb96780d562943dfc45c78a0a7edc0cd /fs/ceph/super.c | |
parent | 79e3057c4c9d32b88e6745fd220d91b0a8b2030b (diff) |
ceph: set up readahead size when rsize is not passed
This should improve the default read performance, as without it
readahead is practically disabled.
Signed-off-by: Yehuda Sadeh <yehuda@hq.newdream.net>
Diffstat (limited to 'fs/ceph/super.c')
-rw-r--r-- | fs/ceph/super.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/ceph/super.c b/fs/ceph/super.c index d4757c98ec14..d47c5ec7fb1f 100644 --- a/fs/ceph/super.c +++ b/fs/ceph/super.c | |||
@@ -779,6 +779,10 @@ static int ceph_register_bdi(struct super_block *sb, | |||
779 | fsc->backing_dev_info.ra_pages = | 779 | fsc->backing_dev_info.ra_pages = |
780 | (fsc->mount_options->rsize + PAGE_CACHE_SIZE - 1) | 780 | (fsc->mount_options->rsize + PAGE_CACHE_SIZE - 1) |
781 | >> PAGE_SHIFT; | 781 | >> PAGE_SHIFT; |
782 | else | ||
783 | fsc->backing_dev_info.ra_pages = | ||
784 | default_backing_dev_info.ra_pages; | ||
785 | |||
782 | err = bdi_register(&fsc->backing_dev_info, NULL, "ceph-%d", | 786 | err = bdi_register(&fsc->backing_dev_info, NULL, "ceph-%d", |
783 | atomic_long_inc_return(&bdi_seq)); | 787 | atomic_long_inc_return(&bdi_seq)); |
784 | if (!err) | 788 | if (!err) |