Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1437401
| From | He YunLei <heyunlei@huawei.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [f2fs-dev] [PATCH 1/2] f2fs: check only data or node for summary |
| Date | 2016-07-06 06:10 +0200 |
| Message-ID | <rRMjT-4hL-7@gated-at.bofh.it> (permalink) |
| References | <rIBQJ-1R3-19@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 2016/6/11 5:01, Jaegeuk Kim wrote: > We can check data or node types only for gc, since we allocate different type of > data/node blocks in a different logs occasionally. > > Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> > --- > fs/f2fs/gc.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/fs/f2fs/gc.c b/fs/f2fs/gc.c > index e1d274c..c2c4ac3 100644 > --- a/fs/f2fs/gc.c > +++ b/fs/f2fs/gc.c > @@ -806,7 +806,8 @@ static int do_garbage_collect(struct f2fs_sb_info *sbi, > f2fs_put_page(sum_page, 0); > > sum = page_address(sum_page); > - f2fs_bug_on(sbi, type != GET_SUM_TYPE((&sum->footer))); > + f2fs_bug_on(sbi, IS_DATASEG(type) != > + IS_DATASEG(GET_SUM_TYPE((&sum->footer)))); Hi, Kim type has been transformed into SUM_TYPE_DATA or SUM_TYPE_NODE, so here no need to do this. Thanks > > /* > * this is to avoid deadlock: >
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
Re: [f2fs-dev] [PATCH 1/2] f2fs: check only data or node for summary He YunLei <heyunlei@huawei.com> - 2016-07-06 06:10 +0200 Re: [f2fs-dev] [PATCH 1/2] f2fs: check only data or node for summary Jaegeuk Kim <jaegeuk@kernel.org> - 2016-07-06 20:00 +0200
csiph-web