Re: [f2fs-dev] [PATCH] f2fs: fix wrong data structure when create slab

2014-11-20 Thread Chao Yu
Hi, Changman > -Original Message- > From: Changman Lee [mailto:cm224@samsung.com] > Sent: Friday, November 21, 2014 2:42 PM > To: linux-fsde...@vger.kernel.org; linux-f2fs-devel@lists.sourceforge.net > Subject: [f2fs-dev] [PATCH] f2fs: fix wrong data structure when create slab > > It

[f2fs-dev] [PATCH] f2fs: fix wrong data structure when create slab

2014-11-20 Thread Changman Lee
It used nat_entry_set when create slab for sit_entry_set. Signed-off-by: Changman Lee --- fs/f2fs/segment.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c index e094675..9de857f 100644 --- a/fs/f2fs/segment.c +++ b/fs/f2fs/segment.c @@ -

Re: [f2fs-dev] [PATCH 1/3] f2fs: call flush_dcache_page when the page was updated

2014-11-20 Thread Changman Lee
On Wed, Nov 19, 2014 at 10:45:33PM -0800, Jaegeuk Kim wrote: > On Thu, Nov 20, 2014 at 03:04:10PM +0900, Changman Lee wrote: > > Hi Jaegeuk, > > > > We should call flush_dcache_page before kunmap because the purpose of the > > cache flush is to address aliasing problem related to virtual address.