RE: [f2fs-dev] [PATCH 1/2] f2fs: avoid free slab cache under spinlock

2014-04-01 Thread Chao Yu
dev] [PATCH 1/2] f2fs: avoid free slab cache under spinlock > > Hi Chao, > > One minor thing as below. > > 2014-03-29 (토), 11:29 +0800, Chao Yu: > > Move kmem_cache_free out of spinlock protection region for better > > performance. > > > > S

Re: [f2fs-dev] [PATCH 1/2] f2fs: avoid free slab cache under spinlock

2014-04-01 Thread Jaegeuk Kim
Hi Chao, One minor thing as below. 2014-03-29 (토), 11:29 +0800, Chao Yu: > Move kmem_cache_free out of spinlock protection region for better performance. > > Signed-off-by: Chao Yu > --- > fs/f2fs/checkpoint.c | 27 +-- > fs/f2fs/node.c | 15 ++- >

[f2fs-dev] [PATCH 1/2] f2fs: avoid free slab cache under spinlock

2014-03-28 Thread Chao Yu
Move kmem_cache_free out of spinlock protection region for better performance. Signed-off-by: Chao Yu --- fs/f2fs/checkpoint.c | 27 +-- fs/f2fs/node.c | 15 ++- 2 files changed, 31 insertions(+), 11 deletions(-) diff --git a/fs/f2fs/checkpoint.c b/