From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Teigland Date: Fri, 8 Jun 2007 16:00:22 -0500 Subject: [Cluster-devel] [PATCH] GFS2: set plock owner in GETLK info Message-ID: <20070608210022.GM31758@redhat.com> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Set the owner field in the plock info sent to userspace for GETLK. Without this, gfs_controld won't correctly see when the GETLK from a process matches one of the process's existing locks. Signed-off-by: David Teigland Index: linux-quilt/fs/gfs2/locking/dlm/plock.c =================================================================== --- linux-quilt.orig/fs/gfs2/locking/dlm/plock.c 2007-05-25 14:56:42.000000000 -0500 +++ linux-quilt/fs/gfs2/locking/dlm/plock.c 2007-06-08 15:26:03.000000000 -0500 @@ -242,7 +242,7 @@ op->info.number = name->ln_number; op->info.start = fl->fl_start; op->info.end = fl->fl_end; - + op->info.owner = (__u64)(long) fl->fl_owner; send_op(op); wait_event(recv_wq, (op->done != 0));