summaryrefslogtreecommitdiffstats
path: root/fs/f2fs/inline.c
diff options
context:
space:
mode:
authorJaegeuk Kim2014-12-31 07:57:55 +0100
committerJaegeuk Kim2015-01-10 02:02:26 +0100
commite1509cf294cc670cda1fedd430f0ff175c42b591 (patch)
tree2278d21b2055970617d70ab5be1eea25584dc76b /fs/f2fs/inline.c
parentf2fs: reuse inode_entry_slab in gc procedure for using slab more effectively (diff)
downloadkernel-qcow2-linux-e1509cf294cc670cda1fedd430f0ff175c42b591.tar.gz
kernel-qcow2-linux-e1509cf294cc670cda1fedd430f0ff175c42b591.tar.xz
kernel-qcow2-linux-e1509cf294cc670cda1fedd430f0ff175c42b591.zip
f2fs: clean up to remove parameter
This patch uses dn->data_blkaddr as a parameter for the destination block address. Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/inline.c')
-rw-r--r--fs/f2fs/inline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/inline.c b/fs/f2fs/inline.c
index 0c3f3f9b9f88..fa2aa2f7bb96 100644
--- a/fs/f2fs/inline.c
+++ b/fs/f2fs/inline.c
@@ -116,7 +116,7 @@ no_update:
set_page_writeback(page);
fio.blk_addr = dn->data_blkaddr;
write_data_page(page, dn, &fio);
- update_extent_cache(fio.blk_addr, dn);
+ update_extent_cache(dn);
f2fs_wait_on_page_writeback(page, DATA);
if (dirty)
inode_dec_dirty_pages(dn->inode);