[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[libvirt] [PATCH] sanlock: avoid lockspace setup when auto_disk_lease is off
- From: Federico Simoncelli <fsimonce redhat com>
- To: libvir-list redhat com
- Subject: [libvirt] [PATCH] sanlock: avoid lockspace setup when auto_disk_lease is off
- Date: Fri, 8 Jul 2011 10:18:35 +0000
When auto_disk_lease is off we should avoid the automatic lockspace
creation.
Signed-off-by: Federico Simoncelli <fsimonce redhat com>
---
src/locking/lock_driver_sanlock.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/locking/lock_driver_sanlock.c b/src/locking/lock_driver_sanlock.c
index cd2bbb5..29d4176 100644
--- a/src/locking/lock_driver_sanlock.c
+++ b/src/locking/lock_driver_sanlock.c
@@ -294,8 +294,10 @@ static int virLockManagerSanlockInit(unsigned int version,
goto error;
}
- if (virLockManagerSanlockSetupLockspace() < 0)
- goto error;
+ if (driver->autoDiskLease) {
+ if (virLockManagerSanlockSetupLockspace() < 0)
+ goto error;
+ }
return 0;
--
1.7.1
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]