Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1700709 > unrolled thread

[PATCH] f2fs: update cur_valid_map_mir together with cur_valid_map

Started byYunlong Song <yunlong.song@huawei.com>
First post2017-08-01 10:00 +0200
Last post2017-08-05 03:30 +0200
Articles 9 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] f2fs: update cur_valid_map_mir together with cur_valid_map Yunlong Song <yunlong.song@huawei.com> - 2017-08-01 10:00 +0200
    Re: [PATCH] f2fs: update cur_valid_map_mir together with  cur_valid_map Chao Yu <chao@kernel.org> - 2017-08-01 17:50 +0200
      Re: [PATCH] f2fs: update cur_valid_map_mir together with  cur_valid_map Chao Yu <yuchao0@huawei.com> - 2017-08-02 03:40 +0200
        Re: [PATCH] f2fs: update cur_valid_map_mir together with  cur_valid_map Yunlong Song <yunlong.song@huawei.com> - 2017-08-02 10:10 +0200
          Re: [PATCH] f2fs: update cur_valid_map_mir together with  cur_valid_map Chao Yu <yuchao0@huawei.com> - 2017-08-02 10:50 +0200
            Re: [PATCH] f2fs: update cur_valid_map_mir together with  cur_valid_map Yunlong Song <yunlong.song@huawei.com> - 2017-08-02 11:10 +0200
    [PATCH v2] f2fs: update cur_valid_map_mir together with cur_valid_map Yunlong Song <yunlong.song@huawei.com> - 2017-08-02 15:30 +0200
      [PATCH] f2fs: do not change the valid_block value if cur_valid_map was wrongly set or cleared Yunlong Song <yunlong.song@huawei.com> - 2017-08-02 16:20 +0200
        Re: [f2fs-dev] [PATCH] f2fs: do not change the valid_block value if  cur_valid_map was wrongly set or cleared Chao Yu <chao@kernel.org> - 2017-08-05 03:30 +0200

#1700709 — [PATCH] f2fs: update cur_valid_map_mir together with cur_valid_map

FromYunlong Song <yunlong.song@huawei.com>
Date2017-08-01 10:00 +0200
Subject[PATCH] f2fs: update cur_valid_map_mir together with cur_valid_map
Message-ID<u9AfT-pF-1@gated-at.bofh.it>
When cur_valid_map passes the f2fs_test_and_set(,clear)_bit test,
cur_valid_map_mir update is skipped unlikely, so fix it.

Signed-off-by: Yunlong Song <yunlong.song@huawei.com>
---
 fs/f2fs/segment.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
index 151968e..6f7731a 100644
--- a/fs/f2fs/segment.c
+++ b/fs/f2fs/segment.c
@@ -1535,6 +1535,10 @@ static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
 			f2fs_bug_on(sbi, 1);
 #endif
 		}
+#ifdef CONFIG_F2FS_CHECK_FS
+		else
+			f2fs_set_bit(offset, se->cur_valid_map_mir);
+#endif
 		if (f2fs_discard_en(sbi) &&
 			!f2fs_test_and_set_bit(offset, se->discard_map))
 			sbi->discard_blks--;
@@ -1556,6 +1560,10 @@ static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
 			f2fs_bug_on(sbi, 1);
 #endif
 		}
+#ifdef CONFIG_F2FS_CHECK_FS
+		else
+			f2fs_clear_bit(offset, se->cur_valid_map_mir);
+#endif
 		if (f2fs_discard_en(sbi) &&
 			f2fs_test_and_clear_bit(offset, se->discard_map))
 			sbi->discard_blks++;
-- 
1.8.5.2

[toc] | [next] | [standalone]


#1701172 — Re: [PATCH] f2fs: update cur_valid_map_mir together with cur_valid_map

FromChao Yu <chao@kernel.org>
Date2017-08-01 17:50 +0200
SubjectRe: [PATCH] f2fs: update cur_valid_map_mir together with cur_valid_map
Message-ID<u9HAK-5MK-25@gated-at.bofh.it>
In reply to#1700709
Hi Yunlong,

How about checking consistence in between original and mirror bitmap all
the time as below?

---
 fs/f2fs/segment.c | 41 +++++++++++++++++++++++++++--------------
 1 file changed, 27 insertions(+), 14 deletions(-)

diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
index a26c24dae70c..f32a19cf486a 100644
--- a/fs/f2fs/segment.c
+++ b/fs/f2fs/segment.c
@@ -1510,6 +1510,7 @@ static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
 	struct seg_entry *se;
 	unsigned int segno, offset;
 	long int new_vblocks;
+	bool exist, mir_exist;

 	segno = GET_SEGNO(sbi, blkaddr);

@@ -1526,17 +1527,23 @@ static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)

 	/* Update valid block bitmap */
 	if (del > 0) {
-		if (f2fs_test_and_set_bit(offset, se->cur_valid_map)) {
+		exist = f2fs_test_and_set_bit(offset, se->cur_valid_map);
 #ifdef CONFIG_F2FS_CHECK_FS
-			if (f2fs_test_and_set_bit(offset,
-						se->cur_valid_map_mir))
-				f2fs_bug_on(sbi, 1);
-			else
-				WARN_ON(1);
-#else
+		mir_exist = f2fs_test_and_set_bit(offset,
+						se->cur_valid_map_mir);
+		if (exist != mir_exist) {
+			f2fs_msg(sbi->sb, KERN_ERR, "Inconsistent error "
+				"when setting bitmap, blk:%u, old bit:%d",
+				blkaddr, exist);
 			f2fs_bug_on(sbi, 1);
+		}
 #endif
+		if (exist) {
+			f2fs_msg(sbi->sb, KERN_ERR,
+				"Bitmap was set, blk:%u", blkaddr);
+			f2fs_bug_on(sbi, 1);
 		}
+
 		if (f2fs_discard_en(sbi) &&
 			!f2fs_test_and_set_bit(offset, se->discard_map))
 			sbi->discard_blks--;
@@ -1547,17 +1554,23 @@ static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
 				se->ckpt_valid_blocks++;
 		}
 	} else {
-		if (!f2fs_test_and_clear_bit(offset, se->cur_valid_map)) {
+		exist = f2fs_test_and_clear_bit(offset, se->cur_valid_map);
 #ifdef CONFIG_F2FS_CHECK_FS
-			if (!f2fs_test_and_clear_bit(offset,
-						se->cur_valid_map_mir))
-				f2fs_bug_on(sbi, 1);
-			else
-				WARN_ON(1);
-#else
+		mir_exist = f2fs_test_and_clear_bit(offset,
+						se->cur_valid_map_mir);
+		if (exist != mir_exist) {
+			f2fs_msg(sbi->sb, KERN_ERR, "Inconsistent error "
+				"when clearing bitmap, blk:%u, old bit:%d",
+				blkaddr, exist);
 			f2fs_bug_on(sbi, 1);
+		}
 #endif
+		if (!exist) {
+			f2fs_msg(sbi->sb, KERN_ERR,
+				"Bitmap was cleared, blk:%u", blkaddr);
+			f2fs_bug_on(sbi, 1);
 		}
+
 		if (f2fs_discard_en(sbi) &&
 			f2fs_test_and_clear_bit(offset, se->discard_map))
 			sbi->discard_blks++;
-- 
2.13.0.90.g1eb437020

On 2017/8/1 15:56, Yunlong Song wrote:
> When cur_valid_map passes the f2fs_test_and_set(,clear)_bit test,
> cur_valid_map_mir update is skipped unlikely, so fix it.
> 
> Signed-off-by: Yunlong Song <yunlong.song@huawei.com>
> ---
>  fs/f2fs/segment.c | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
> index 151968e..6f7731a 100644
> --- a/fs/f2fs/segment.c
> +++ b/fs/f2fs/segment.c
> @@ -1535,6 +1535,10 @@ static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
>  			f2fs_bug_on(sbi, 1);
>  #endif
>  		}
> +#ifdef CONFIG_F2FS_CHECK_FS
> +		else
> +			f2fs_set_bit(offset, se->cur_valid_map_mir);
> +#endif
>  		if (f2fs_discard_en(sbi) &&
>  			!f2fs_test_and_set_bit(offset, se->discard_map))
>  			sbi->discard_blks--;
> @@ -1556,6 +1560,10 @@ static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
>  			f2fs_bug_on(sbi, 1);
>  #endif
>  		}
> +#ifdef CONFIG_F2FS_CHECK_FS
> +		else
> +			f2fs_clear_bit(offset, se->cur_valid_map_mir);
> +#endif
>  		if (f2fs_discard_en(sbi) &&
>  			f2fs_test_and_clear_bit(offset, se->discard_map))
>  			sbi->discard_blks++;
> 

[toc] | [prev] | [next] | [standalone]


#1701620 — Re: [PATCH] f2fs: update cur_valid_map_mir together with cur_valid_map

FromChao Yu <yuchao0@huawei.com>
Date2017-08-02 03:40 +0200
SubjectRe: [PATCH] f2fs: update cur_valid_map_mir together with cur_valid_map
Message-ID<u9QNH-3g2-9@gated-at.bofh.it>
In reply to#1701172
Hi Yunlong,

On 2017/8/2 0:59, Yunlong Song wrote:
> Hi Chao,
>     I think there is no need to test mirror bitmap when original bitmap's check
> get passed, it is an instruction waste for "test". By the way, previous patch
> uses WARN to skip trigger panic when the memory is flipped, I think it is proper
> to not trigger panic in this situation, because it is not code bug at all in
> such case.

Original idea is trying to use bitmap mirror to detect bitmap corruption caused
by memory overflow or bit-transition of cache.

So if we encounter inconsistency in between original bitmap and mirror bitmap,
there may be memory overflow or cache bit-transition, we need to detect that;
another case is that both bitmap is consistent, but we are trying to reuse valid
block address or free invalid block address, indeed that is a bug.

Below modification can cover above two cases, which make original idea of
introducing mirror bitmap check working correctly.

Thanks,

> On 08/01/2017 23:44, Chao Yu <mailto:chao@kernel.org> wrote:
> 
>     Hi Yunlong,
> 
>     How about checking consistence in between original and mirror bitmap all
>     the time as below?
> 
>     ---
>     fs/f2fs/segment.c | 41 +++++++++++++++++++++++++++--------------
>     1 file changed, 27 insertions(+), 14 deletions(-)
> 
>     diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
>     index a26c24dae70c..f32a19cf486a 100644
>     --- a/fs/f2fs/segment.c
>     +++ b/fs/f2fs/segment.c
>     @@ -1510,6 +1510,7 @@ static void update_sit_entry(struct f2fs_sb_info *sbi,
>     block_t blkaddr, int del)
>        struct seg_entry *se;
>        unsigned int segno, offset;
>        long int new_vblocks;
>     +    bool exist, mir_exist;
> 
>        segno = GET_SEGNO(sbi, blkaddr);
> 
>     @@ -1526,17 +1527,23 @@ static void update_sit_entry(struct f2fs_sb_info
>     *sbi, block_t blkaddr, int del)
> 
>        /* Update valid block bitmap */
>        if (del > 0) {
>     -        if (f2fs_test_and_set_bit(offset, se->cur_valid_map)) {
>     +        exist = f2fs_test_and_set_bit(offset, se->cur_valid_map);
>     #ifdef CONFIG_F2FS_CHECK_FS
>     -            if (f2fs_test_and_set_bit(offset,
>     -                        se->cur_valid_map_mir))
>     -                f2fs_bug_on(sbi, 1);
>     -            else
>     -                WARN_ON(1);
>     -#else
>     +        mir_exist = f2fs_test_and_set_bit(offset,
>     +                        se->cur_valid_map_mir);
>     +        if (exist != mir_exist) {
>     +            f2fs_msg(sbi->sb, KERN_ERR, "Inconsistent error "
>     +                "when setting bitmap, blk:%u, old bit:%d",
>     +                blkaddr, exist);
>                f2fs_bug_on(sbi, 1);
>     +        }
>     #endif
>     +        if (exist) {
>     +            f2fs_msg(sbi->sb, KERN_ERR,
>     +                "Bitmap was set, blk:%u", blkaddr);
>     +            f2fs_bug_on(sbi, 1);
>            }
>     +
>            if (f2fs_discard_en(sbi) &&
>                !f2fs_test_and_set_bit(offset, se->discard_map))
>                sbi->discard_blks--;
>     @@ -1547,17 +1554,23 @@ static void update_sit_entry(struct f2fs_sb_info
>     *sbi, block_t blkaddr, int del)
>                    se->ckpt_valid_blocks++;
>            }
>        } else {
>     -        if (!f2fs_test_and_clear_bit(offset, se->cur_valid_map)) {
>     +        exist = f2fs_test_and_clear_bit(offset, se->cur_valid_map);
>     #ifdef CONFIG_F2FS_CHECK_FS
>     -            if (!f2fs_test_and_clear_bit(offset,
>     -                        se->cur_valid_map_mir))
>     -                f2fs_bug_on(sbi, 1);
>     -            else
>     -                WARN_ON(1);
>     -#else
>     +        mir_exist = f2fs_test_and_clear_bit(offset,
>     +                        se->cur_valid_map_mir);
>     +        if (exist != mir_exist) {
>     +            f2fs_msg(sbi->sb, KERN_ERR, "Inconsistent error "
>     +                "when clearing bitmap, blk:%u, old bit:%d",
>     +                blkaddr, exist);
>                f2fs_bug_on(sbi, 1);
>     +        }
>     #endif
>     +        if (!exist) {
>     +            f2fs_msg(sbi->sb, KERN_ERR,
>     +                "Bitmap was cleared, blk:%u", blkaddr);
>     +            f2fs_bug_on(sbi, 1);
>            }
>     +
>            if (f2fs_discard_en(sbi) &&
>                f2fs_test_and_clear_bit(offset, se->discard_map))
>                sbi->discard_blks++;
>     -- 
>     2.13.0.90.g1eb437020
> 
>     On 2017/8/1 15:56, Yunlong Song wrote:
>     > When cur_valid_map passes the f2fs_test_and_set(,clear)_bit test,
>     > cur_valid_map_mir update is skipped unlikely, so fix it.
>     >
>     > Signed-off-by: Yunlong Song <yunlong.song@huawei.com>
>     > ---
>     >  fs/f2fs/segment.c | 8 ++++++++
>     >  1 file changed, 8 insertions(+)
>     >
>     > diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
>     > index 151968e..6f7731a 100644
>     > --- a/fs/f2fs/segment.c
>     > +++ b/fs/f2fs/segment.c
>     > @@ -1535,6 +1535,10 @@ static void update_sit_entry(struct f2fs_sb_info
>     *sbi, block_t blkaddr, int del)
>     >              f2fs_bug_on(sbi, 1);
>     >  #endif
>     >          }
>     > +#ifdef CONFIG_F2FS_CHECK_FS
>     > +        else
>     > +            f2fs_set_bit(offset, se->cur_valid_map_mir);
>     > +#endif
>     >          if (f2fs_discard_en(sbi) &&
>     >              !f2fs_test_and_set_bit(offset, se->discard_map))
>     >              sbi->discard_blks--;
>     > @@ -1556,6 +1560,10 @@ static void update_sit_entry(struct f2fs_sb_info
>     *sbi, block_t blkaddr, int del)
>     >              f2fs_bug_on(sbi, 1);
>     >  #endif
>     >          }
>     > +#ifdef CONFIG_F2FS_CHECK_FS
>     > +        else
>     > +            f2fs_clear_bit(offset, se->cur_valid_map_mir);
>     > +#endif
>     >          if (f2fs_discard_en(sbi) &&
>     >              f2fs_test_and_clear_bit(offset, se->discard_map))
>     >              sbi->discard_blks++;
>     >
> 

[toc] | [prev] | [next] | [standalone]


#1701828 — Re: [PATCH] f2fs: update cur_valid_map_mir together with cur_valid_map

FromYunlong Song <yunlong.song@huawei.com>
Date2017-08-02 10:10 +0200
SubjectRe: [PATCH] f2fs: update cur_valid_map_mir together with cur_valid_map
Message-ID<u9WT8-7j8-21@gated-at.bofh.it>
In reply to#1701620
Hi Chao,
     For the memory overflow or cache bit-transition case, when CHECK_FS 
is on, should f2fs
enter panic or just provide WARNing information? I prefer WARNing, 
because it is not f2fs's
fault, f2fs does not need to pay for it, why not use WARN_ON instead?

On 2017/8/2 9:34, Chao Yu wrote:
> Hi Yunlong,
>
> On 2017/8/2 0:59, Yunlong Song wrote:
>> Hi Chao,
>>      I think there is no need to test mirror bitmap when original bitmap's check
>> get passed, it is an instruction waste for "test". By the way, previous patch
>> uses WARN to skip trigger panic when the memory is flipped, I think it is proper
>> to not trigger panic in this situation, because it is not code bug at all in
>> such case.
> Original idea is trying to use bitmap mirror to detect bitmap corruption caused
> by memory overflow or bit-transition of cache.
>
> So if we encounter inconsistency in between original bitmap and mirror bitmap,
> there may be memory overflow or cache bit-transition, we need to detect that;
> another case is that both bitmap is consistent, but we are trying to reuse valid
> block address or free invalid block address, indeed that is a bug.
>
> Below modification can cover above two cases, which make original idea of
> introducing mirror bitmap check working correctly.
>
> Thanks,
>
>> On 08/01/2017 23:44, Chao Yu <mailto:chao@kernel.org> wrote:
>>
>>      Hi Yunlong,
>>
>>      How about checking consistence in between original and mirror bitmap all
>>      the time as below?
>>
>>      ---
>>      fs/f2fs/segment.c | 41 +++++++++++++++++++++++++++--------------
>>      1 file changed, 27 insertions(+), 14 deletions(-)
>>
>>      diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
>>      index a26c24dae70c..f32a19cf486a 100644
>>      --- a/fs/f2fs/segment.c
>>      +++ b/fs/f2fs/segment.c
>>      @@ -1510,6 +1510,7 @@ static void update_sit_entry(struct f2fs_sb_info *sbi,
>>      block_t blkaddr, int del)
>>         struct seg_entry *se;
>>         unsigned int segno, offset;
>>         long int new_vblocks;
>>      +    bool exist, mir_exist;
>>
>>         segno = GET_SEGNO(sbi, blkaddr);
>>
>>      @@ -1526,17 +1527,23 @@ static void update_sit_entry(struct f2fs_sb_info
>>      *sbi, block_t blkaddr, int del)
>>
>>         /* Update valid block bitmap */
>>         if (del > 0) {
>>      -        if (f2fs_test_and_set_bit(offset, se->cur_valid_map)) {
>>      +        exist = f2fs_test_and_set_bit(offset, se->cur_valid_map);
>>      #ifdef CONFIG_F2FS_CHECK_FS
>>      -            if (f2fs_test_and_set_bit(offset,
>>      -                        se->cur_valid_map_mir))
>>      -                f2fs_bug_on(sbi, 1);
>>      -            else
>>      -                WARN_ON(1);
>>      -#else
>>      +        mir_exist = f2fs_test_and_set_bit(offset,
>>      +                        se->cur_valid_map_mir);
>>      +        if (exist != mir_exist) {
>>      +            f2fs_msg(sbi->sb, KERN_ERR, "Inconsistent error "
>>      +                "when setting bitmap, blk:%u, old bit:%d",
>>      +                blkaddr, exist);
>>                 f2fs_bug_on(sbi, 1);
>>      +        }
>>      #endif
>>      +        if (exist) {
>>      +            f2fs_msg(sbi->sb, KERN_ERR,
>>      +                "Bitmap was set, blk:%u", blkaddr);
>>      +            f2fs_bug_on(sbi, 1);
>>             }
>>      +
>>             if (f2fs_discard_en(sbi) &&
>>                 !f2fs_test_and_set_bit(offset, se->discard_map))
>>                 sbi->discard_blks--;
>>      @@ -1547,17 +1554,23 @@ static void update_sit_entry(struct f2fs_sb_info
>>      *sbi, block_t blkaddr, int del)
>>                     se->ckpt_valid_blocks++;
>>             }
>>         } else {
>>      -        if (!f2fs_test_and_clear_bit(offset, se->cur_valid_map)) {
>>      +        exist = f2fs_test_and_clear_bit(offset, se->cur_valid_map);
>>      #ifdef CONFIG_F2FS_CHECK_FS
>>      -            if (!f2fs_test_and_clear_bit(offset,
>>      -                        se->cur_valid_map_mir))
>>      -                f2fs_bug_on(sbi, 1);
>>      -            else
>>      -                WARN_ON(1);
>>      -#else
>>      +        mir_exist = f2fs_test_and_clear_bit(offset,
>>      +                        se->cur_valid_map_mir);
>>      +        if (exist != mir_exist) {
>>      +            f2fs_msg(sbi->sb, KERN_ERR, "Inconsistent error "
>>      +                "when clearing bitmap, blk:%u, old bit:%d",
>>      +                blkaddr, exist);
>>                 f2fs_bug_on(sbi, 1);
>>      +        }
>>      #endif
>>      +        if (!exist) {
>>      +            f2fs_msg(sbi->sb, KERN_ERR,
>>      +                "Bitmap was cleared, blk:%u", blkaddr);
>>      +            f2fs_bug_on(sbi, 1);
>>             }
>>      +
>>             if (f2fs_discard_en(sbi) &&
>>                 f2fs_test_and_clear_bit(offset, se->discard_map))
>>                 sbi->discard_blks++;
>>      --
>>      2.13.0.90.g1eb437020
>>
>>      On 2017/8/1 15:56, Yunlong Song wrote:
>>      > When cur_valid_map passes the f2fs_test_and_set(,clear)_bit test,
>>      > cur_valid_map_mir update is skipped unlikely, so fix it.
>>      >
>>      > Signed-off-by: Yunlong Song <yunlong.song@huawei.com>
>>      > ---
>>      >  fs/f2fs/segment.c | 8 ++++++++
>>      >  1 file changed, 8 insertions(+)
>>      >
>>      > diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
>>      > index 151968e..6f7731a 100644
>>      > --- a/fs/f2fs/segment.c
>>      > +++ b/fs/f2fs/segment.c
>>      > @@ -1535,6 +1535,10 @@ static void update_sit_entry(struct f2fs_sb_info
>>      *sbi, block_t blkaddr, int del)
>>      >              f2fs_bug_on(sbi, 1);
>>      >  #endif
>>      >          }
>>      > +#ifdef CONFIG_F2FS_CHECK_FS
>>      > +        else
>>      > +            f2fs_set_bit(offset, se->cur_valid_map_mir);
>>      > +#endif
>>      >          if (f2fs_discard_en(sbi) &&
>>      >              !f2fs_test_and_set_bit(offset, se->discard_map))
>>      >              sbi->discard_blks--;
>>      > @@ -1556,6 +1560,10 @@ static void update_sit_entry(struct f2fs_sb_info
>>      *sbi, block_t blkaddr, int del)
>>      >              f2fs_bug_on(sbi, 1);
>>      >  #endif
>>      >          }
>>      > +#ifdef CONFIG_F2FS_CHECK_FS
>>      > +        else
>>      > +            f2fs_clear_bit(offset, se->cur_valid_map_mir);
>>      > +#endif
>>      >          if (f2fs_discard_en(sbi) &&
>>      >              f2fs_test_and_clear_bit(offset, se->discard_map))
>>      >              sbi->discard_blks++;
>>      >
>>
>
> .
>

-- 
Thanks,
Yunlong Song

[toc] | [prev] | [next] | [standalone]


#1701914 — Re: [PATCH] f2fs: update cur_valid_map_mir together with cur_valid_map

FromChao Yu <yuchao0@huawei.com>
Date2017-08-02 10:50 +0200
SubjectRe: [PATCH] f2fs: update cur_valid_map_mir together with cur_valid_map
Message-ID<u9XvR-7wU-47@gated-at.bofh.it>
In reply to#1701828
Hi Yunlong,

On 2017/8/2 16:02, Yunlong Song wrote:
> Hi Chao,
>      For the memory overflow or cache bit-transition case, when CHECK_FS 
> is on, should f2fs
> enter panic or just provide WARNing information? I prefer WARNing, 
> because it is not f2fs's
> fault, f2fs does not need to pay for it, why not use WARN_ON instead?

Actually, if that happens, I think both original and mirror bitmap datas are not
trustable, it's harmful to continue to trigger write IOs based on those bitmap
datas. So IMO, it would be better to trigger bug_on.

At least, if only warning is showed, we'd better to turn f2fs to readonly and
fail current write IO.

Thanks,

> 
> On 2017/8/2 9:34, Chao Yu wrote:
>> Hi Yunlong,
>>
>> On 2017/8/2 0:59, Yunlong Song wrote:
>>> Hi Chao,
>>>      I think there is no need to test mirror bitmap when original bitmap's check
>>> get passed, it is an instruction waste for "test". By the way, previous patch
>>> uses WARN to skip trigger panic when the memory is flipped, I think it is proper
>>> to not trigger panic in this situation, because it is not code bug at all in
>>> such case.
>> Original idea is trying to use bitmap mirror to detect bitmap corruption caused
>> by memory overflow or bit-transition of cache.
>>
>> So if we encounter inconsistency in between original bitmap and mirror bitmap,
>> there may be memory overflow or cache bit-transition, we need to detect that;
>> another case is that both bitmap is consistent, but we are trying to reuse valid
>> block address or free invalid block address, indeed that is a bug.
>>
>> Below modification can cover above two cases, which make original idea of
>> introducing mirror bitmap check working correctly.
>>
>> Thanks,
>>
>>> On 08/01/2017 23:44, Chao Yu <mailto:chao@kernel.org> wrote:
>>>
>>>      Hi Yunlong,
>>>
>>>      How about checking consistence in between original and mirror bitmap all
>>>      the time as below?
>>>
>>>      ---
>>>      fs/f2fs/segment.c | 41 +++++++++++++++++++++++++++--------------
>>>      1 file changed, 27 insertions(+), 14 deletions(-)
>>>
>>>      diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
>>>      index a26c24dae70c..f32a19cf486a 100644
>>>      --- a/fs/f2fs/segment.c
>>>      +++ b/fs/f2fs/segment.c
>>>      @@ -1510,6 +1510,7 @@ static void update_sit_entry(struct f2fs_sb_info *sbi,
>>>      block_t blkaddr, int del)
>>>         struct seg_entry *se;
>>>         unsigned int segno, offset;
>>>         long int new_vblocks;
>>>      +    bool exist, mir_exist;
>>>
>>>         segno = GET_SEGNO(sbi, blkaddr);
>>>
>>>      @@ -1526,17 +1527,23 @@ static void update_sit_entry(struct f2fs_sb_info
>>>      *sbi, block_t blkaddr, int del)
>>>
>>>         /* Update valid block bitmap */
>>>         if (del > 0) {
>>>      -        if (f2fs_test_and_set_bit(offset, se->cur_valid_map)) {
>>>      +        exist = f2fs_test_and_set_bit(offset, se->cur_valid_map);
>>>      #ifdef CONFIG_F2FS_CHECK_FS
>>>      -            if (f2fs_test_and_set_bit(offset,
>>>      -                        se->cur_valid_map_mir))
>>>      -                f2fs_bug_on(sbi, 1);
>>>      -            else
>>>      -                WARN_ON(1);
>>>      -#else
>>>      +        mir_exist = f2fs_test_and_set_bit(offset,
>>>      +                        se->cur_valid_map_mir);
>>>      +        if (exist != mir_exist) {
>>>      +            f2fs_msg(sbi->sb, KERN_ERR, "Inconsistent error "
>>>      +                "when setting bitmap, blk:%u, old bit:%d",
>>>      +                blkaddr, exist);
>>>                 f2fs_bug_on(sbi, 1);
>>>      +        }
>>>      #endif
>>>      +        if (exist) {
>>>      +            f2fs_msg(sbi->sb, KERN_ERR,
>>>      +                "Bitmap was set, blk:%u", blkaddr);
>>>      +            f2fs_bug_on(sbi, 1);
>>>             }
>>>      +
>>>             if (f2fs_discard_en(sbi) &&
>>>                 !f2fs_test_and_set_bit(offset, se->discard_map))
>>>                 sbi->discard_blks--;
>>>      @@ -1547,17 +1554,23 @@ static void update_sit_entry(struct f2fs_sb_info
>>>      *sbi, block_t blkaddr, int del)
>>>                     se->ckpt_valid_blocks++;
>>>             }
>>>         } else {
>>>      -        if (!f2fs_test_and_clear_bit(offset, se->cur_valid_map)) {
>>>      +        exist = f2fs_test_and_clear_bit(offset, se->cur_valid_map);
>>>      #ifdef CONFIG_F2FS_CHECK_FS
>>>      -            if (!f2fs_test_and_clear_bit(offset,
>>>      -                        se->cur_valid_map_mir))
>>>      -                f2fs_bug_on(sbi, 1);
>>>      -            else
>>>      -                WARN_ON(1);
>>>      -#else
>>>      +        mir_exist = f2fs_test_and_clear_bit(offset,
>>>      +                        se->cur_valid_map_mir);
>>>      +        if (exist != mir_exist) {
>>>      +            f2fs_msg(sbi->sb, KERN_ERR, "Inconsistent error "
>>>      +                "when clearing bitmap, blk:%u, old bit:%d",
>>>      +                blkaddr, exist);
>>>                 f2fs_bug_on(sbi, 1);
>>>      +        }
>>>      #endif
>>>      +        if (!exist) {
>>>      +            f2fs_msg(sbi->sb, KERN_ERR,
>>>      +                "Bitmap was cleared, blk:%u", blkaddr);
>>>      +            f2fs_bug_on(sbi, 1);
>>>             }
>>>      +
>>>             if (f2fs_discard_en(sbi) &&
>>>                 f2fs_test_and_clear_bit(offset, se->discard_map))
>>>                 sbi->discard_blks++;
>>>      --
>>>      2.13.0.90.g1eb437020
>>>
>>>      On 2017/8/1 15:56, Yunlong Song wrote:
>>>      > When cur_valid_map passes the f2fs_test_and_set(,clear)_bit test,
>>>      > cur_valid_map_mir update is skipped unlikely, so fix it.
>>>      >
>>>      > Signed-off-by: Yunlong Song <yunlong.song@huawei.com>
>>>      > ---
>>>      >  fs/f2fs/segment.c | 8 ++++++++
>>>      >  1 file changed, 8 insertions(+)
>>>      >
>>>      > diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
>>>      > index 151968e..6f7731a 100644
>>>      > --- a/fs/f2fs/segment.c
>>>      > +++ b/fs/f2fs/segment.c
>>>      > @@ -1535,6 +1535,10 @@ static void update_sit_entry(struct f2fs_sb_info
>>>      *sbi, block_t blkaddr, int del)
>>>      >              f2fs_bug_on(sbi, 1);
>>>      >  #endif
>>>      >          }
>>>      > +#ifdef CONFIG_F2FS_CHECK_FS
>>>      > +        else
>>>      > +            f2fs_set_bit(offset, se->cur_valid_map_mir);
>>>      > +#endif
>>>      >          if (f2fs_discard_en(sbi) &&
>>>      >              !f2fs_test_and_set_bit(offset, se->discard_map))
>>>      >              sbi->discard_blks--;
>>>      > @@ -1556,6 +1560,10 @@ static void update_sit_entry(struct f2fs_sb_info
>>>      *sbi, block_t blkaddr, int del)
>>>      >              f2fs_bug_on(sbi, 1);
>>>      >  #endif
>>>      >          }
>>>      > +#ifdef CONFIG_F2FS_CHECK_FS
>>>      > +        else
>>>      > +            f2fs_clear_bit(offset, se->cur_valid_map_mir);
>>>      > +#endif
>>>      >          if (f2fs_discard_en(sbi) &&
>>>      >              f2fs_test_and_clear_bit(offset, se->discard_map))
>>>      >              sbi->discard_blks++;
>>>      >
>>>
>>
>> .
>>
> 

[toc] | [prev] | [next] | [standalone]


#1701937 — Re: [PATCH] f2fs: update cur_valid_map_mir together with cur_valid_map

FromYunlong Song <yunlong.song@huawei.com>
Date2017-08-02 11:10 +0200
SubjectRe: [PATCH] f2fs: update cur_valid_map_mir together with cur_valid_map
Message-ID<u9XPc-7SS-19@gated-at.bofh.it>
In reply to#1701914
Agree, it's safe to bug_on or readonly to protect data. This patch is fine.

On 2017/8/2 16:47, Chao Yu wrote:
> Hi Yunlong,
>
> On 2017/8/2 16:02, Yunlong Song wrote:
>> Hi Chao,
>>       For the memory overflow or cache bit-transition case, when CHECK_FS
>> is on, should f2fs
>> enter panic or just provide WARNing information? I prefer WARNing,
>> because it is not f2fs's
>> fault, f2fs does not need to pay for it, why not use WARN_ON instead?
> Actually, if that happens, I think both original and mirror bitmap datas are not
> trustable, it's harmful to continue to trigger write IOs based on those bitmap
> datas. So IMO, it would be better to trigger bug_on.
>
> At least, if only warning is showed, we'd better to turn f2fs to readonly and
> fail current write IO.
>
> Thanks,
>
>> On 2017/8/2 9:34, Chao Yu wrote:
>>> Hi Yunlong,
>>>
>>> On 2017/8/2 0:59, Yunlong Song wrote:
>>>> Hi Chao,
>>>>       I think there is no need to test mirror bitmap when original bitmap's check
>>>> get passed, it is an instruction waste for "test". By the way, previous patch
>>>> uses WARN to skip trigger panic when the memory is flipped, I think it is proper
>>>> to not trigger panic in this situation, because it is not code bug at all in
>>>> such case.
>>> Original idea is trying to use bitmap mirror to detect bitmap corruption caused
>>> by memory overflow or bit-transition of cache.
>>>
>>> So if we encounter inconsistency in between original bitmap and mirror bitmap,
>>> there may be memory overflow or cache bit-transition, we need to detect that;
>>> another case is that both bitmap is consistent, but we are trying to reuse valid
>>> block address or free invalid block address, indeed that is a bug.
>>>
>>> Below modification can cover above two cases, which make original idea of
>>> introducing mirror bitmap check working correctly.
>>>
>>> Thanks,
>>>
>>>> On 08/01/2017 23:44, Chao Yu <mailto:chao@kernel.org> wrote:
>>>>
>>>>       Hi Yunlong,
>>>>
>>>>       How about checking consistence in between original and mirror bitmap all
>>>>       the time as below?
>>>>
>>>>       ---
>>>>       fs/f2fs/segment.c | 41 +++++++++++++++++++++++++++--------------
>>>>       1 file changed, 27 insertions(+), 14 deletions(-)
>>>>
>>>>       diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
>>>>       index a26c24dae70c..f32a19cf486a 100644
>>>>       --- a/fs/f2fs/segment.c
>>>>       +++ b/fs/f2fs/segment.c
>>>>       @@ -1510,6 +1510,7 @@ static void update_sit_entry(struct f2fs_sb_info *sbi,
>>>>       block_t blkaddr, int del)
>>>>          struct seg_entry *se;
>>>>          unsigned int segno, offset;
>>>>          long int new_vblocks;
>>>>       +    bool exist, mir_exist;
>>>>
>>>>          segno = GET_SEGNO(sbi, blkaddr);
>>>>
>>>>       @@ -1526,17 +1527,23 @@ static void update_sit_entry(struct f2fs_sb_info
>>>>       *sbi, block_t blkaddr, int del)
>>>>
>>>>          /* Update valid block bitmap */
>>>>          if (del > 0) {
>>>>       -        if (f2fs_test_and_set_bit(offset, se->cur_valid_map)) {
>>>>       +        exist = f2fs_test_and_set_bit(offset, se->cur_valid_map);
>>>>       #ifdef CONFIG_F2FS_CHECK_FS
>>>>       -            if (f2fs_test_and_set_bit(offset,
>>>>       -                        se->cur_valid_map_mir))
>>>>       -                f2fs_bug_on(sbi, 1);
>>>>       -            else
>>>>       -                WARN_ON(1);
>>>>       -#else
>>>>       +        mir_exist = f2fs_test_and_set_bit(offset,
>>>>       +                        se->cur_valid_map_mir);
>>>>       +        if (exist != mir_exist) {
>>>>       +            f2fs_msg(sbi->sb, KERN_ERR, "Inconsistent error "
>>>>       +                "when setting bitmap, blk:%u, old bit:%d",
>>>>       +                blkaddr, exist);
>>>>                  f2fs_bug_on(sbi, 1);
>>>>       +        }
>>>>       #endif
>>>>       +        if (exist) {
>>>>       +            f2fs_msg(sbi->sb, KERN_ERR,
>>>>       +                "Bitmap was set, blk:%u", blkaddr);
>>>>       +            f2fs_bug_on(sbi, 1);
>>>>              }
>>>>       +
>>>>              if (f2fs_discard_en(sbi) &&
>>>>                  !f2fs_test_and_set_bit(offset, se->discard_map))
>>>>                  sbi->discard_blks--;
>>>>       @@ -1547,17 +1554,23 @@ static void update_sit_entry(struct f2fs_sb_info
>>>>       *sbi, block_t blkaddr, int del)
>>>>                      se->ckpt_valid_blocks++;
>>>>              }
>>>>          } else {
>>>>       -        if (!f2fs_test_and_clear_bit(offset, se->cur_valid_map)) {
>>>>       +        exist = f2fs_test_and_clear_bit(offset, se->cur_valid_map);
>>>>       #ifdef CONFIG_F2FS_CHECK_FS
>>>>       -            if (!f2fs_test_and_clear_bit(offset,
>>>>       -                        se->cur_valid_map_mir))
>>>>       -                f2fs_bug_on(sbi, 1);
>>>>       -            else
>>>>       -                WARN_ON(1);
>>>>       -#else
>>>>       +        mir_exist = f2fs_test_and_clear_bit(offset,
>>>>       +                        se->cur_valid_map_mir);
>>>>       +        if (exist != mir_exist) {
>>>>       +            f2fs_msg(sbi->sb, KERN_ERR, "Inconsistent error "
>>>>       +                "when clearing bitmap, blk:%u, old bit:%d",
>>>>       +                blkaddr, exist);
>>>>                  f2fs_bug_on(sbi, 1);
>>>>       +        }
>>>>       #endif
>>>>       +        if (!exist) {
>>>>       +            f2fs_msg(sbi->sb, KERN_ERR,
>>>>       +                "Bitmap was cleared, blk:%u", blkaddr);
>>>>       +            f2fs_bug_on(sbi, 1);
>>>>              }
>>>>       +
>>>>              if (f2fs_discard_en(sbi) &&
>>>>                  f2fs_test_and_clear_bit(offset, se->discard_map))
>>>>                  sbi->discard_blks++;
>>>>       --
>>>>       2.13.0.90.g1eb437020
>>>>
>>>>       On 2017/8/1 15:56, Yunlong Song wrote:
>>>>       > When cur_valid_map passes the f2fs_test_and_set(,clear)_bit test,
>>>>       > cur_valid_map_mir update is skipped unlikely, so fix it.
>>>>       >
>>>>       > Signed-off-by: Yunlong Song <yunlong.song@huawei.com>
>>>>       > ---
>>>>       >  fs/f2fs/segment.c | 8 ++++++++
>>>>       >  1 file changed, 8 insertions(+)
>>>>       >
>>>>       > diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
>>>>       > index 151968e..6f7731a 100644
>>>>       > --- a/fs/f2fs/segment.c
>>>>       > +++ b/fs/f2fs/segment.c
>>>>       > @@ -1535,6 +1535,10 @@ static void update_sit_entry(struct f2fs_sb_info
>>>>       *sbi, block_t blkaddr, int del)
>>>>       >              f2fs_bug_on(sbi, 1);
>>>>       >  #endif
>>>>       >          }
>>>>       > +#ifdef CONFIG_F2FS_CHECK_FS
>>>>       > +        else
>>>>       > +            f2fs_set_bit(offset, se->cur_valid_map_mir);
>>>>       > +#endif
>>>>       >          if (f2fs_discard_en(sbi) &&
>>>>       >              !f2fs_test_and_set_bit(offset, se->discard_map))
>>>>       >              sbi->discard_blks--;
>>>>       > @@ -1556,6 +1560,10 @@ static void update_sit_entry(struct f2fs_sb_info
>>>>       *sbi, block_t blkaddr, int del)
>>>>       >              f2fs_bug_on(sbi, 1);
>>>>       >  #endif
>>>>       >          }
>>>>       > +#ifdef CONFIG_F2FS_CHECK_FS
>>>>       > +        else
>>>>       > +            f2fs_clear_bit(offset, se->cur_valid_map_mir);
>>>>       > +#endif
>>>>       >          if (f2fs_discard_en(sbi) &&
>>>>       >              f2fs_test_and_clear_bit(offset, se->discard_map))
>>>>       >              sbi->discard_blks++;
>>>>       >
>>>>
>>> .
>>>
>
> .
>

-- 
Thanks,
Yunlong Song

[toc] | [prev] | [next] | [standalone]


#1702114 — [PATCH v2] f2fs: update cur_valid_map_mir together with cur_valid_map

FromYunlong Song <yunlong.song@huawei.com>
Date2017-08-02 15:30 +0200
Subject[PATCH v2] f2fs: update cur_valid_map_mir together with cur_valid_map
Message-ID<ua1SN-1Yb-9@gated-at.bofh.it>
In reply to#1700709
When cur_valid_map passes the f2fs_test_and_set(,clear)_bit test,
cur_valid_map_mir update is skipped unlikely, so fix it. The fix
now changes the mirror check together with cur_valid_map all the
time.

Signed-off-by: Yunlong Song <yunlong.song@huawei.com>
Signed-off-by: Chao Yu <yuchao0@huawei.com>
---
 fs/f2fs/segment.c | 41 +++++++++++++++++++++++++++--------------
 1 file changed, 27 insertions(+), 14 deletions(-)

diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
index 151968e..40e40c5 100644
--- a/fs/f2fs/segment.c
+++ b/fs/f2fs/segment.c
@@ -1508,6 +1508,7 @@ static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
 	struct seg_entry *se;
 	unsigned int segno, offset;
 	long int new_vblocks;
+	bool exist, mir_exist;
 
 	segno = GET_SEGNO(sbi, blkaddr);
 
@@ -1524,17 +1525,23 @@ static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
 
 	/* Update valid block bitmap */
 	if (del > 0) {
-		if (f2fs_test_and_set_bit(offset, se->cur_valid_map)) {
+		exist = f2fs_test_and_set_bit(offset, se->cur_valid_map);
 #ifdef CONFIG_F2FS_CHECK_FS
-			if (f2fs_test_and_set_bit(offset,
-						se->cur_valid_map_mir))
-				f2fs_bug_on(sbi, 1);
-			else
-				WARN_ON(1);
-#else
+		mir_exist = f2fs_test_and_set_bit(offset,
+						se->cur_valid_map_mir);
+		if (exist != mir_exist) {
+			f2fs_msg(sbi->sb, KERN_ERR, "Inconsistent error "
+				"when setting bitmap, blk:%u, old bit:%d",
+				blkaddr, exist);
 			f2fs_bug_on(sbi, 1);
+		}
 #endif
+		if (exist) {
+			f2fs_msg(sbi->sb, KERN_ERR,
+				"Bitmap was wrongly set, blk:%u", blkaddr);
+			f2fs_bug_on(sbi, 1);
 		}
+
 		if (f2fs_discard_en(sbi) &&
 			!f2fs_test_and_set_bit(offset, se->discard_map))
 			sbi->discard_blks--;
@@ -1545,17 +1552,23 @@ static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
 				se->ckpt_valid_blocks++;
 		}
 	} else {
-		if (!f2fs_test_and_clear_bit(offset, se->cur_valid_map)) {
+		exist = f2fs_test_and_clear_bit(offset, se->cur_valid_map);
 #ifdef CONFIG_F2FS_CHECK_FS
-			if (!f2fs_test_and_clear_bit(offset,
-						se->cur_valid_map_mir))
-				f2fs_bug_on(sbi, 1);
-			else
-				WARN_ON(1);
-#else
+		mir_exist = f2fs_test_and_clear_bit(offset,
+						se->cur_valid_map_mir);
+		if (exist != mir_exist) {
+			f2fs_msg(sbi->sb, KERN_ERR, "Inconsistent error "
+				"when clearing bitmap, blk:%u, old bit:%d",
+				blkaddr, exist);
 			f2fs_bug_on(sbi, 1);
+		}
 #endif
+		if (!exist) {
+			f2fs_msg(sbi->sb, KERN_ERR,
+				"Bitmap was wrongly cleared, blk:%u", blkaddr);
+			f2fs_bug_on(sbi, 1);
 		}
+
 		if (f2fs_discard_en(sbi) &&
 			f2fs_test_and_clear_bit(offset, se->discard_map))
 			sbi->discard_blks++;
-- 
1.8.5.2

[toc] | [prev] | [next] | [standalone]


#1702151 — [PATCH] f2fs: do not change the valid_block value if cur_valid_map was wrongly set or cleared

FromYunlong Song <yunlong.song@huawei.com>
Date2017-08-02 16:20 +0200
Subject[PATCH] f2fs: do not change the valid_block value if cur_valid_map was wrongly set or cleared
Message-ID<ua2Fc-2u3-11@gated-at.bofh.it>
In reply to#1702114
Signed-off-by: Yunlong Song <yunlong.song@huawei.com>
---
 fs/f2fs/segment.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
index 40e40c5..9e3249a 100644
--- a/fs/f2fs/segment.c
+++ b/fs/f2fs/segment.c
@@ -1540,6 +1540,8 @@ static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
 			f2fs_msg(sbi->sb, KERN_ERR,
 				"Bitmap was wrongly set, blk:%u", blkaddr);
 			f2fs_bug_on(sbi, 1);
+			se->valid_blocks--;
+			del = 0;
 		}
 
 		if (f2fs_discard_en(sbi) &&
@@ -1567,6 +1569,8 @@ static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
 			f2fs_msg(sbi->sb, KERN_ERR,
 				"Bitmap was wrongly cleared, blk:%u", blkaddr);
 			f2fs_bug_on(sbi, 1);
+			se->valid_blocks++;
+			del = 0;
 		}
 
 		if (f2fs_discard_en(sbi) &&
-- 
1.8.5.2

[toc] | [prev] | [next] | [standalone]


#1704540 — Re: [f2fs-dev] [PATCH] f2fs: do not change the valid_block value if cur_valid_map was wrongly set or cleared

FromChao Yu <chao@kernel.org>
Date2017-08-05 03:30 +0200
SubjectRe: [f2fs-dev] [PATCH] f2fs: do not change the valid_block value if cur_valid_map was wrongly set or cleared
Message-ID<uaW4F-6pC-11@gated-at.bofh.it>
In reply to#1702151
On 2017/8/2 22:16, Yunlong Song wrote:
> Signed-off-by: Yunlong Song <yunlong.song@huawei.com>

Reviewed-by: Chao Yu <yuchao0@huawei.com>

> ---
>  fs/f2fs/segment.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
> index 40e40c5..9e3249a 100644
> --- a/fs/f2fs/segment.c
> +++ b/fs/f2fs/segment.c
> @@ -1540,6 +1540,8 @@ static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
>  			f2fs_msg(sbi->sb, KERN_ERR,
>  				"Bitmap was wrongly set, blk:%u", blkaddr);
>  			f2fs_bug_on(sbi, 1);
> +			se->valid_blocks--;
> +			del = 0;
>  		}
>  
>  		if (f2fs_discard_en(sbi) &&
> @@ -1567,6 +1569,8 @@ static void update_sit_entry(struct f2fs_sb_info *sbi, block_t blkaddr, int del)
>  			f2fs_msg(sbi->sb, KERN_ERR,
>  				"Bitmap was wrongly cleared, blk:%u", blkaddr);
>  			f2fs_bug_on(sbi, 1);
> +			se->valid_blocks++;
> +			del = 0;
>  		}
>  
>  		if (f2fs_discard_en(sbi) &&
> 

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web