diff options
author | Yunlei He <heyunlei@huawei.com> | 2017-07-17 19:16:11 +0800 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2017-07-26 19:34:30 -0700 |
commit | 5f4ce6abc2dadac67bfb8a14cfb1b9ac3941810f (patch) | |
tree | 6f3ad14a1fdd0b30efd7b4af6fdef7a49fe63843 /fs/f2fs/f2fs.h | |
parent | fd2b2c57ec2020ae1b5e24717a876c71e31e5ab8 (diff) | |
download | op-kernel-dev-5f4ce6abc2dadac67bfb8a14cfb1b9ac3941810f.zip op-kernel-dev-5f4ce6abc2dadac67bfb8a14cfb1b9ac3941810f.tar.gz |
f2fs: remove unused input parameter
This patch remove unused input parameter in function
new_node_page.
Signed-off-by: Yunlei He <heyunlei@huawei.com>
Signed-off-by: Yong Sheng <shengyong1@huawei.com>
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/f2fs.h')
-rw-r--r-- | fs/f2fs/f2fs.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h index 94a88b2..7a17b21 100644 --- a/fs/f2fs/f2fs.h +++ b/fs/f2fs/f2fs.h @@ -2285,8 +2285,7 @@ int truncate_xattr_node(struct inode *inode, struct page *page); int wait_on_node_pages_writeback(struct f2fs_sb_info *sbi, nid_t ino); int remove_inode_page(struct inode *inode); struct page *new_inode_page(struct inode *inode); -struct page *new_node_page(struct dnode_of_data *dn, - unsigned int ofs, struct page *ipage); +struct page *new_node_page(struct dnode_of_data *dn, unsigned int ofs); void ra_node_page(struct f2fs_sb_info *sbi, nid_t nid); struct page *get_node_page(struct f2fs_sb_info *sbi, pgoff_t nid); struct page *get_node_page_ra(struct page *parent, int start); |