From: Xiaowei.Hu Date: Tue, 28 Jan 2014 01:06:56 +0000 (-0800) Subject: ocfs2: do not log ENOENT in unlink() X-Git-Tag: v3.14-rc1~79^2~24 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=f5b258550f3c4e74901fcb71daf3aea454d694ae;p=~emulex%2Finfiniband.git ocfs2: do not log ENOENT in unlink() Suppress log message like this: (open_delete,8328,0):ocfs2_unlink:951 ERROR: status = -2 Orabug:17445485 Signed-off-by: Xiaowei Hu Cc: Joe Jin Cc: Mark Fasheh Cc: Joel Becker Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/ocfs2/namei.c b/fs/ocfs2/namei.c index 4f791f6d27d..41513a4e98e 100644 --- a/fs/ocfs2/namei.c +++ b/fs/ocfs2/namei.c @@ -948,7 +948,7 @@ leave: ocfs2_free_dir_lookup_result(&orphan_insert); ocfs2_free_dir_lookup_result(&lookup); - if (status && (status != -ENOTEMPTY)) + if (status && (status != -ENOTEMPTY) && (status != -ENOENT)) mlog_errno(status); return status;