f2fs: remove obsolete pointer for truncate_xattr_node

This patch removes obosolete parameter for truncate_xattr_node.

Suggested-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
Jaegeuk Kim
2017-10-19 11:48:57 -07:00
parent 4e46a023c5
commit 9c77f754f8
3 changed files with 6 additions and 8 deletions

View File

@@ -421,7 +421,7 @@ static inline int write_all_xattrs(struct inode *inode, __u32 hsize,
/* no need to use xattr node block */
if (hsize <= inline_size) {
err = truncate_xattr_node(inode, ipage);
err = truncate_xattr_node(inode);
alloc_nid_failed(sbi, new_nid);
return err;
}