Re: [Cluster-devel] [PATCH 1/2] fence_ipmilan: port fencing agent to fencing library

2013-11-22 Thread Fabio M. Di Nitto
On 11/22/2013 5:18 PM, Jan Pokorný wrote: > On 21/11/13 16:48 +0100, Fabio M. Di Nitto wrote: >> On 11/21/2013 4:16 PM, Ondrej Mular wrote: >>> +PATHS = ["/usr/local/bull/NSMasterHW/bin/ipmitool", >>> +"/usr/bin/ipmitool", >>> +"/usr/sbin/ipmitool", >>> +"/bin/ipmitool", >>> +"/sbin

Re: [Cluster-devel] [PATCH 1/2] fence_ipmilan: port fencing agent to fencing library

2013-11-22 Thread Jan Pokorný
On 21/11/13 16:48 +0100, Fabio M. Di Nitto wrote: > On 11/21/2013 4:16 PM, Ondrej Mular wrote: >> +PATHS = ["/usr/local/bull/NSMasterHW/bin/ipmitool", >> +"/usr/bin/ipmitool", >> +"/usr/sbin/ipmitool", >> +"/bin/ipmitool", >> +"/sbin/ipmitool", >> +"/usr/local/bin/ipmitool", >>

[Cluster-devel] GFS2: Pull request (fixes)

2013-11-22 Thread Steven Whitehouse
Hi, Please consider pulling the following fixes, Steve. The following changes since commit ea0341e071527d5cec350917b01ab901af09d758: GFS2: Fix ref count bug relating to atomic_open (2013-11-21 18:47:57 +) are available

[Cluster-devel] GFS2: Pre-pull patch posting (fixes)

2013-11-22 Thread Steven Whitehouse
Hi, Here are a couple of very small, but important, fixes, Steve.

[Cluster-devel] [PATCH 1/2] GFS2: fix potential NULL pointer dereference

2013-11-22 Thread Steven Whitehouse
From: Michal Nazarewicz Commit [e66cf1610: GFS2: Use lockref for glocks] replaced call: atomic_read(&gi->gl->gl_ref) == 0 with: __lockref_is_dead(&gl->gl_lockref) therefore changing how gl is accessed, from gi->gl to plan gl. However, gl can be a NULL pointer, and so gi->gl needs to be us

[Cluster-devel] [PATCH 2/2] GFS2: Fix ref count bug relating to atomic_open

2013-11-22 Thread Steven Whitehouse
In the case that atomic_open calls finish_no_open() with the dentry that was supplied to gfs2_atomic_open() an extra reference count is required. This patch fixes that issue preventing a bug trap triggering at umount time. Signed-off-by: Steven Whitehouse diff --git a/fs/gfs2/inode.c b/fs/gfs2/i