summaryrefslogtreecommitdiffstats
path: root/fs/f2fs/file.c
diff options
context:
space:
mode:
authorChao Yu <chao2.yu@samsung.com>2014-04-26 13:59:52 +0200
committerJaegeuk Kim <jaegeuk.kim@samsung.com>2014-05-07 03:21:56 +0200
commit6403eb1f646a49cc92f25c08f8716f8870a4a865 (patch)
tree31bb16630a67a086d0ff271cea88b9c9bc3e301b /fs/f2fs/file.c
parentf2fs: submit bio at the reclaim path (diff)
downloadlinux-6403eb1f646a49cc92f25c08f8716f8870a4a865.tar.xz
linux-6403eb1f646a49cc92f25c08f8716f8870a4a865.zip
f2fs: introduce help macro ADDRS_PER_PAGE()
Introduce help macro ADDRS_PER_PAGE() to get the number of address pointers in direct node or inode. Signed-off-by: Chao Yu <chao2.yu@samsung.com> Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs/file.c')
-rw-r--r--fs/f2fs/file.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
index 60e7d5448a1d..bb365c932555 100644
--- a/fs/f2fs/file.c
+++ b/fs/f2fs/file.c
@@ -288,10 +288,7 @@ int truncate_blocks(struct inode *inode, u64 from)
return err;
}
- if (IS_INODE(dn.node_page))
- count = ADDRS_PER_INODE(F2FS_I(inode));
- else
- count = ADDRS_PER_BLOCK;
+ count = ADDRS_PER_PAGE(dn.node_page, F2FS_I(inode));
count -= dn.ofs_in_node;
f2fs_bug_on(count < 0);