diff options
Diffstat (limited to 'fs/f2fs/checkpoint.c')
-rw-r--r-- | fs/f2fs/checkpoint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c index 7fe69ff2bfe7..3e62987e333a 100644 --- a/fs/f2fs/checkpoint.c +++ b/fs/f2fs/checkpoint.c | |||
@@ -323,9 +323,9 @@ static void write_orphan_inodes(struct f2fs_sb_info *sbi, block_t start_blk) | |||
323 | memset(orphan_blk, 0, sizeof(*orphan_blk)); | 323 | memset(orphan_blk, 0, sizeof(*orphan_blk)); |
324 | } | 324 | } |
325 | 325 | ||
326 | orphan_blk->ino[nentries] = cpu_to_le32(orphan->ino); | 326 | orphan_blk->ino[nentries++] = cpu_to_le32(orphan->ino); |
327 | 327 | ||
328 | if (nentries++ == F2FS_ORPHANS_PER_BLOCK) { | 328 | if (nentries == F2FS_ORPHANS_PER_BLOCK) { |
329 | /* | 329 | /* |
330 | * an orphan block is full of 1020 entries, | 330 | * an orphan block is full of 1020 entries, |
331 | * then we need to flush current orphan blocks | 331 | * then we need to flush current orphan blocks |