From f79c01b0ddd4770808eb1f9a384dba66cdd1dc37 Mon Sep 17 00:00:00 2001 From: Kotresh HR Date: Wed, 31 Oct 2018 10:43:18 +0530 Subject: posix/ctime: Avoid log flood in posix_update_utime_in_mdata posix_update_utime_in_mdata() unconditionally logs an error if consistent time attributes features is not enabled. This log does not add any value, prints an incorrect errno & floods the log file. Hence nuking this log message in this patch. fixes: bz#1644524 Change-Id: I01736d2ed48d14f12ccd8a808521f59145e42ccb Signed-off-by: Kotresh HR --- xlators/storage/posix/src/posix-metadata.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/xlators/storage/posix/src/posix-metadata.c b/xlators/storage/posix/src/posix-metadata.c index efaaa49e909..922fccc5f30 100644 --- a/xlators/storage/posix/src/posix-metadata.c +++ b/xlators/storage/posix/src/posix-metadata.c @@ -562,11 +562,6 @@ posix_update_utime_in_mdata (xlator_t *this, const char *real_path, int fd, real_path, uuid_utoa (inode->gfid)); } } - - } else { - gf_msg (this->name, GF_LOG_WARNING, errno, - P_MSG_SETMDATA_FAILED, - "posix utime set mdata failed on file"); } return; } -- cgit