diff options
author | Vijay Bellur <vijay@gluster.com> | 2011-07-07 03:00:29 +0000 |
---|---|---|
committer | Anand Avati <avati@gluster.com> | 2011-07-07 04:45:37 -0700 |
commit | 64e7f70a0b3d6c8c57dd9d15f745451639dc8c76 (patch) | |
tree | f9040b10c44cbc01d6faeece521aaf0b2fc06061 /xlators/features/locks/src/inodelk.c | |
parent | 5c20eb3bbf870edadd22d06babb5d38dad222533 (diff) |
features/locks: Do not block UNLOCKs
Signed-off-by: Vijay Bellur <vijay@gluster.com>
Signed-off-by: Anand Avati <avati@gluster.com>
BUG: 2473 (Support for volume and directory level quota)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2473
Diffstat (limited to 'xlators/features/locks/src/inodelk.c')
-rw-r--r-- | xlators/features/locks/src/inodelk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/features/locks/src/inodelk.c b/xlators/features/locks/src/inodelk.c index f3c158ebb..81cd26730 100644 --- a/xlators/features/locks/src/inodelk.c +++ b/xlators/features/locks/src/inodelk.c @@ -615,7 +615,7 @@ pl_common_inodelk (call_frame_t *frame, xlator_t *this, can_block, dom); if (ret < 0) { - if (can_block) { + if ((can_block) && (F_UNLCK != reqlock->fl_type)) { pl_trace_block (this, frame, fd, loc, cmd, flock, volume); goto out; |