From da1123b9d87db1642883336e990ff393ae0fcc50 Mon Sep 17 00:00:00 2001 From: Pavan Sondur Date: Mon, 28 Jun 2010 14:10:36 +0000 Subject: cluster/afr: Set lk-owner to pid when fuse does not supply it. Use the frame->root address as lk-owner when FUSE does not supply lk_owner. Raghu, I unit tested this patch with dbench and self heal tests. Did not observe lk-owner=0 in any server logs. Can you verify this patch with the other tests you had run today? Signed-off-by: Pavan Vilas Sondur Signed-off-by: Anand V. Avati BUG: 1032 (Set lock-owner with pid when fuse does not supply value) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1032 --- xlators/cluster/afr/src/afr-transaction.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'xlators/cluster/afr/src/afr-transaction.c') diff --git a/xlators/cluster/afr/src/afr-transaction.c b/xlators/cluster/afr/src/afr-transaction.c index 2d689e389bc..75a059f303c 100644 --- a/xlators/cluster/afr/src/afr-transaction.c +++ b/xlators/cluster/afr/src/afr-transaction.c @@ -1373,9 +1373,11 @@ int afr_lock_rec (call_frame_t *frame, xlator_t *this, int child_index) int32_t afr_lock (call_frame_t *frame, xlator_t *this) { + afr_pid_save (frame); frame->root->pid = (long) frame->root; + afr_set_lk_owner (frame, this); return afr_lock_rec (frame, this, 0); } -- cgit