9ae3f9
From 3612b3a46c33d19bb7d4aee6eb6625d8d903d459 Mon Sep 17 00:00:00 2001
9ae3f9
From: Pranith Kumar K <pkarampu@redhat.com>
9ae3f9
Date: Wed, 17 Jun 2020 10:44:37 +0530
9ae3f9
Subject: [PATCH 474/478] features/locks: posixlk-clear-lock should set error
9ae3f9
 as EINTR
9ae3f9
9ae3f9
Problem:
9ae3f9
fuse on receiving interrupt for setlk sends clear-lock "fop"
9ae3f9
using virtual-getxattr. At the moment blocked locks which are
9ae3f9
cleared return EAGAIN errno as opposed to EINTR errno
9ae3f9
9ae3f9
Fix:
9ae3f9
Return EINTR errno.
9ae3f9
9ae3f9
Upstream:
9ae3f9
> Reviewed-on: https://review.gluster.org/24587
9ae3f9
> Updates: #1310
9ae3f9
> Change-Id: I47de0fcaec370b267f2f5f89deeb37e1b9c0ee9b
9ae3f9
> Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
9ae3f9
9ae3f9
BUG: 1821743
9ae3f9
Change-Id: Id8301ce6e21c009949e88db5904d8b6ecc278f66
9ae3f9
Signed-off-by: Csaba Henk <csaba@redhat.com>
9ae3f9
Reviewed-on: https://code.engineering.redhat.com/gerrit/216157
9ae3f9
Tested-by: RHGS Build Bot <nigelb@redhat.com>
9ae3f9
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
9ae3f9
---
9ae3f9
 xlators/features/locks/src/clear.c | 4 ++--
9ae3f9
 1 file changed, 2 insertions(+), 2 deletions(-)
9ae3f9
9ae3f9
diff --git a/xlators/features/locks/src/clear.c b/xlators/features/locks/src/clear.c
9ae3f9
index 116aed6..ab1eac6 100644
9ae3f9
--- a/xlators/features/locks/src/clear.c
9ae3f9
+++ b/xlators/features/locks/src/clear.c
9ae3f9
@@ -181,9 +181,9 @@ clrlk_clear_posixlk(xlator_t *this, pl_inode_t *pl_inode, clrlk_args *args,
9ae3f9
             if (plock->blocked) {
9ae3f9
                 bcount++;
9ae3f9
                 pl_trace_out(this, plock->frame, NULL, NULL, F_SETLKW,
9ae3f9
-                             &plock->user_flock, -1, EAGAIN, NULL);
9ae3f9
+                             &plock->user_flock, -1, EINTR, NULL);
9ae3f9
 
9ae3f9
-                STACK_UNWIND_STRICT(lk, plock->frame, -1, EAGAIN,
9ae3f9
+                STACK_UNWIND_STRICT(lk, plock->frame, -1, EINTR,
9ae3f9
                                     &plock->user_flock, NULL);
9ae3f9
 
9ae3f9
             } else {
9ae3f9
-- 
9ae3f9
1.8.3.1
9ae3f9