Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753232AbbL2JtF (ORCPT ); Tue, 29 Dec 2015 04:49:05 -0500 Received: from mailout4.samsung.com ([203.254.224.34]:59565 "EHLO mailout4.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753150AbbL2JtC (ORCPT ); Tue, 29 Dec 2015 04:49:02 -0500 X-AuditID: cbfee61b-f793c6d00000236c-b1-5682570cab2c From: Chao Yu To: Jaegeuk Kim Cc: linux-f2fs-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org Subject: [PATCH] f2fs: introduce F2FS_MAX_BLOCKS Date: Tue, 29 Dec 2015 17:48:04 +0800 Message-id: <00cf01d1421e$24391d70$6cab5850$@samsung.com> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7bit X-Mailer: Microsoft Outlook 14.0 Thread-index: AdFCHfqYFhinvZWNTH6S5pnU3jdnfg== Content-language: zh-cn X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFjrNLMWRmVeSWpSXmKPExsVy+t9jAV2e8KYwg1NfNC2erJ/FbHFpkbvF 5V1z2ByYPTat6mTz2L3gM5PH501yAcxRXDYpqTmZZalF+nYJXBlda84zFrwUq2h7sI+1gfGS UBcjB4eEgInElxtcXYycQKaYxIV769m6GLk4hASWMkr8PvqQFcJ5xSjx99F+FpAqNgEVieUd /5lAbBEg+9Ciy+wgNrOAh0Rjx3dWEFtYwEDi9tE3jCA2i4CqxL+1p8FqeAUsJXY1TYGyBSV+ TL7HAtGrJbF+53EmCFteYvOat8wQFylI7Dj7mhFil57E66kLmCFqxCU2HrnFMoFRYBaSUbOQ jJqFZNQsJC0LGFlWMUqkFiQXFCel5xrlpZbrFSfmFpfmpesl5+duYgQH8TPpHYyHd7kfYhTg YFTi4c2Y1BgmxJpYVlyZe4hRgoNZSYTXdQtQiDclsbIqtSg/vqg0J7X4EKM0B4uSOO++S5Fh QgLpiSWp2ampBalFMFkmDk6pBsbQk2xyacFx9hxZ/2c+0hfpCHs1Ndd78xPexBdXzjIE+pW/ mLI3vVex5TPzRYZ/NouqSx5sD1mj9XX1LOGYnS+j7ffK1CkmnT+XbDTh7AmOi1bd3GnXtvL+ uDLnXsiqDHudN5elbd2TJ4hcWaEoKtJXe7+tcE7qfMuOM6abLW8qPVixkOuc4SElluKMREMt 5qLiRABebsqxXgIAAA== Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3079 Lines: 92 Introduce a macro named F2FS_MAX_BLOCKS to indicate maximum block index in f2fs, it could be used to avoid unneeded calculation in runtime. Signed-off-by: Chao Yu --- fs/f2fs/data.c | 2 +- fs/f2fs/f2fs.h | 1 - fs/f2fs/super.c | 19 ++----------------- include/linux/f2fs_fs.h | 5 +++++ 4 files changed, 8 insertions(+), 19 deletions(-) diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index 7175d33..a366a4c 100644 --- a/fs/f2fs/data.c +++ b/fs/f2fs/data.c @@ -762,7 +762,7 @@ static int get_data_block_bmap(struct inode *inode, sector_t iblock, struct buffer_head *bh_result, int create) { /* Block number less than F2FS MAX BLOCKS */ - if (unlikely(iblock > max_file_size(0))) + if (unlikely(iblock > F2FS_MAX_BLOCKS)) return -EFBIG; return __get_data_block(inode, iblock, bh_result, create, diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h index 9ba6a09..95c6f38 100644 --- a/fs/f2fs/f2fs.h +++ b/fs/f2fs/f2fs.h @@ -1731,7 +1731,6 @@ static inline int f2fs_add_link(struct dentry *dentry, struct inode *inode) * super.c */ int f2fs_commit_super(struct f2fs_sb_info *, bool); -loff_t max_file_size(unsigned bits); int f2fs_sync_fs(struct super_block *, int); extern __printf(3, 4) void f2fs_msg(struct super_block *, const char *, const char *, ...); diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index f474355..5f7e632 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c @@ -909,24 +909,9 @@ static const struct export_operations f2fs_export_ops = { .get_parent = f2fs_get_parent, }; -loff_t max_file_size(unsigned bits) +static loff_t max_file_size(unsigned bits) { - loff_t result = (DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS); - loff_t leaf_count = ADDRS_PER_BLOCK; - - /* two direct node blocks */ - result += (leaf_count * 2); - - /* two indirect node blocks */ - leaf_count *= NIDS_PER_BLOCK; - result += (leaf_count * 2); - - /* one double indirect node block */ - leaf_count *= NIDS_PER_BLOCK; - result += leaf_count; - - result <<= bits; - return result; + return ((loff_t)F2FS_MAX_BLOCKS << bits); } static inline bool sanity_check_area_boundary(struct super_block *sb, diff --git a/include/linux/f2fs_fs.h b/include/linux/f2fs_fs.h index e59c3be..814c471 100644 --- a/include/linux/f2fs_fs.h +++ b/include/linux/f2fs_fs.h @@ -189,6 +189,11 @@ struct f2fs_extent { #define F2FS_DATA_EXIST 0x08 /* file inline data exist flag */ #define F2FS_INLINE_DOTS 0x10 /* file having implicit dot dentries */ +#define F2FS_MAX_BLOCKS ((DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS) + \ + ADDRS_PER_BLOCK * 2 + ADDRS_PER_BLOCK * \ + NIDS_PER_BLOCK * 2 + ADDRS_PER_BLOCK * \ + NIDS_PER_BLOCK * NIDS_PER_BLOCK) + #define MAX_INLINE_DATA (sizeof(__le32) * (DEF_ADDRS_PER_INODE - \ F2FS_INLINE_XATTR_ADDRS - 1)) -- 2.6.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/