summaryrefslogtreecommitdiffstats
path: root/xlators
diff options
context:
space:
mode:
authorVikas Gorur <vikas@gluster.com>2009-08-11 01:43:33 +0000
committerAnand V. Avati <avati@dev.gluster.com>2009-08-17 14:37:47 -0700
commiteed9ed130dd0168a669bd3df03fc0b68a989165d (patch)
treeb8df60f2be694ce938c84623fbc40ce97972460d /xlators
parent516b21c238394bd55b6ac770abec53cc5a1c9c4f (diff)
mount/fuse: Don't log setlk returning EAGAIN as a GF_LOG_ERROR.
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
Diffstat (limited to 'xlators')
-rw-r--r--xlators/mount/fuse/src/fuse-bridge.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/mount/fuse/src/fuse-bridge.c b/xlators/mount/fuse/src/fuse-bridge.c
index 61fd2576b53..296fd0799ba 100644
--- a/xlators/mount/fuse/src/fuse-bridge.c
+++ b/xlators/mount/fuse/src/fuse-bridge.c
@@ -2279,8 +2279,8 @@ fuse_setlk_cbk (call_frame_t *frame, void *cookie, xlator_t *this,
"'features/posix-locks' on server side "
"will add SETLK support.");
}
- } else {
- gf_log ("glusterfs-fuse", GF_LOG_WARNING,
+ } else if (op_errno != EAGAIN) {
+ gf_log ("glusterfs-fuse", GF_LOG_ERROR,
"%"PRId64": ERR => -1 (%s)",
frame->root->unique, strerror (op_errno));
}