提交 ec6ea56b 编写于 作者: J Jeff Mahoney 提交者: Linus Torvalds

reiserfs: xattr reiserfs_get_page takes offset instead of index

This patch changes reiserfs_get_page to take an offset rather than an
index since no callers calculate the index differently.
Signed-off-by: NJeff Mahoney <jeffm@suse.com>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 f437c529
...@@ -376,14 +376,14 @@ static inline void reiserfs_put_page(struct page *page) ...@@ -376,14 +376,14 @@ static inline void reiserfs_put_page(struct page *page)
page_cache_release(page); page_cache_release(page);
} }
static struct page *reiserfs_get_page(struct inode *dir, unsigned long n) static struct page *reiserfs_get_page(struct inode *dir, size_t n)
{ {
struct address_space *mapping = dir->i_mapping; struct address_space *mapping = dir->i_mapping;
struct page *page; struct page *page;
/* We can deadlock if we try to free dentries, /* We can deadlock if we try to free dentries,
and an unlink/rmdir has just occured - GFP_NOFS avoids this */ and an unlink/rmdir has just occured - GFP_NOFS avoids this */
mapping_set_gfp_mask(mapping, GFP_NOFS); mapping_set_gfp_mask(mapping, GFP_NOFS);
page = read_mapping_page(mapping, n, NULL); page = read_mapping_page(mapping, n >> PAGE_CACHE_SHIFT, NULL);
if (!IS_ERR(page)) { if (!IS_ERR(page)) {
kmap(page); kmap(page);
if (PageError(page)) if (PageError(page))
...@@ -470,8 +470,7 @@ reiserfs_xattr_set(struct inode *inode, const char *name, const void *buffer, ...@@ -470,8 +470,7 @@ reiserfs_xattr_set(struct inode *inode, const char *name, const void *buffer,
else else
chunk = buffer_size - buffer_pos; chunk = buffer_size - buffer_pos;
page = reiserfs_get_page(dentry->d_inode, page = reiserfs_get_page(dentry->d_inode, file_pos);
file_pos >> PAGE_CACHE_SHIFT);
if (IS_ERR(page)) { if (IS_ERR(page)) {
err = PTR_ERR(page); err = PTR_ERR(page);
goto out_filp; goto out_filp;
...@@ -577,8 +576,7 @@ reiserfs_xattr_get(const struct inode *inode, const char *name, void *buffer, ...@@ -577,8 +576,7 @@ reiserfs_xattr_get(const struct inode *inode, const char *name, void *buffer,
else else
chunk = isize - file_pos; chunk = isize - file_pos;
page = reiserfs_get_page(dentry->d_inode, page = reiserfs_get_page(dentry->d_inode, file_pos);
file_pos >> PAGE_CACHE_SHIFT);
if (IS_ERR(page)) { if (IS_ERR(page)) {
err = PTR_ERR(page); err = PTR_ERR(page);
goto out_dput; goto out_dput;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册