Re: [f2fs-dev] [PATCH 3/3] f2fs: load largest extent all the time

2015-12-29 Thread Jaegeuk Kim
ger.kernel.org; > > linux-f2fs-devel@lists.sourceforge.net > > Cc: Jaegeuk Kim > > Subject: [f2fs-dev] [PATCH 3/3] f2fs: load largest extent all the time > > > > Otherwise, we can get mismatched largest extent information. > > > > One example is: > >

Re: [f2fs-dev] [PATCH 3/3] f2fs: load largest extent all the time

2015-12-29 Thread Chao Yu
dev] [PATCH 3/3] f2fs: load largest extent all the time > > Otherwise, we can get mismatched largest extent information. > > One example is: > 1. mount f2fs w/ extent_cache > 2. make a small extent > 3. umount > 4. mount f2fs w/o extent_cache > 5. update the largest ex

[f2fs-dev] [PATCH 3/3] f2fs: load largest extent all the time

2015-12-28 Thread Jaegeuk Kim
Otherwise, we can get mismatched largest extent information. One example is: 1. mount f2fs w/ extent_cache 2. make a small extent 3. umount 4. mount f2fs w/o extent_cache 5. update the largest extent 6. umount 7. mount f2fs w/ extent_cache 8. get the old extent made by #2 Signed-off-by: Jaegeuk K