Re: [f2fs-dev] [PATCH] f2fs: remove duplicated code in the f2fs_lookup()

2015-04-16 Thread Taehee Yoo
2015-04-17 2:00 GMT+09:00 Jaegeuk Kim : > Hi Taehee, > > On Thu, Apr 16, 2015 at 05:42:43PM +0900, Taehee Yoo wrote: >> in the f2fs_lookup(), checks that inode isn't null >> but d_splice_alias() has same routine at first line. >> so i remove this routine. > > In the latest f2fs, we cannot merge thi

Re: [f2fs-dev] [PATCH] f2fs: remove duplicated code in the f2fs_lookup()

2015-04-16 Thread Jaegeuk Kim
Hi Taehee, On Thu, Apr 16, 2015 at 05:42:43PM +0900, Taehee Yoo wrote: > in the f2fs_lookup(), checks that inode isn't null > but d_splice_alias() has same routine at first line. > so i remove this routine. In the latest f2fs, we cannot merge this patch. Since some inline_dots codes were added wi

[f2fs-dev] [PATCH] f2fs: remove duplicated code in the f2fs_lookup()

2015-04-16 Thread Taehee Yoo
in the f2fs_lookup(), checks that inode isn't null but d_splice_alias() has same routine at first line. so i remove this routine. Signed-off-by: Taehee Yoo --- fs/f2fs/namei.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/fs/f2fs/namei.c b/fs/f2fs/namei.c index e79639a9..f17b4b5 100644 --