diff options
author | Cheng Renquan <crquan@gmail.com> | 2010-03-26 05:40:33 -0400 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-05-17 18:25:17 -0400 |
commit | 640ef79d27c81b7a3265a344ec1d25644dd463ad (patch) | |
tree | f5632a0b2a2f6cef7c6f3a513bbb6020d6ac694a /fs/ceph/addr.c | |
parent | 2d06eeb877581a7f53209af1582c5f66c799f0bd (diff) |
ceph: use ceph_sb_to_client instead of ceph_client
ceph_sb_to_client and ceph_client are really identical, we need to dump
one; while function ceph_client is confusing with "struct ceph_client",
ceph_sb_to_client's definition is more clear; so we'd better switch all
call to ceph_sb_to_client.
-static inline struct ceph_client *ceph_client(struct super_block *sb)
-{
- return sb->s_fs_info;
-}
Signed-off-by: Cheng Renquan <crquan@gmail.com>
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/addr.c')
-rw-r--r-- | fs/ceph/addr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/addr.c b/fs/ceph/addr.c index caf76c7fa77c..d9c60b84949a 100644 --- a/fs/ceph/addr.c +++ b/fs/ceph/addr.c | |||
@@ -563,7 +563,7 @@ static void writepages_finish(struct ceph_osd_request *req, | |||
563 | ceph_release_pages(req->r_pages, req->r_num_pages); | 563 | ceph_release_pages(req->r_pages, req->r_num_pages); |
564 | if (req->r_pages_from_pool) | 564 | if (req->r_pages_from_pool) |
565 | mempool_free(req->r_pages, | 565 | mempool_free(req->r_pages, |
566 | ceph_client(inode->i_sb)->wb_pagevec_pool); | 566 | ceph_sb_to_client(inode->i_sb)->wb_pagevec_pool); |
567 | else | 567 | else |
568 | kfree(req->r_pages); | 568 | kfree(req->r_pages); |
569 | ceph_osdc_put_request(req); | 569 | ceph_osdc_put_request(req); |