mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-17 18:36:00 +00:00
f2fs: optimize __update_nat_bits
Make three modification for __update_nat_bits: 1. Take the codes of dealing the nat with nid 0 out of the loop Such nat only needs to be dealt with once at beginning. 2. Use " nat_index == 0" instead of " start_nid == 0" to decide if it's the first nat block It's better that we don't assume @start_nid is the first nid of the nat block it's in. 3. Use " if (nat_blk->entries[i].block_addr != NULL_ADDR)" to explicitly comfirm the value of block_addr use constant to make sure the codes is right, even if the value of NULL_ADDR changes. Signed-off-by: Fan li <fanofcode.li@samsung.com> Reviewed-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
parent
f15194fcfa
commit
37a0ab2a3b
@ -2421,15 +2421,17 @@ static void __update_nat_bits(struct f2fs_sb_info *sbi, nid_t start_nid,
|
|||||||
unsigned int nat_index = start_nid / NAT_ENTRY_PER_BLOCK;
|
unsigned int nat_index = start_nid / NAT_ENTRY_PER_BLOCK;
|
||||||
struct f2fs_nat_block *nat_blk = page_address(page);
|
struct f2fs_nat_block *nat_blk = page_address(page);
|
||||||
int valid = 0;
|
int valid = 0;
|
||||||
int i;
|
int i = 0;
|
||||||
|
|
||||||
if (!enabled_nat_bits(sbi, NULL))
|
if (!enabled_nat_bits(sbi, NULL))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
for (i = 0; i < NAT_ENTRY_PER_BLOCK; i++) {
|
if (nat_index == 0) {
|
||||||
if (start_nid == 0 && i == 0)
|
valid = 1;
|
||||||
valid++;
|
i = 1;
|
||||||
if (nat_blk->entries[i].block_addr)
|
}
|
||||||
|
for (; i < NAT_ENTRY_PER_BLOCK; i++) {
|
||||||
|
if (nat_blk->entries[i].block_addr != NULL_ADDR)
|
||||||
valid++;
|
valid++;
|
||||||
}
|
}
|
||||||
if (valid == 0) {
|
if (valid == 0) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user