_LockInstancesNodes: support append mode
authorGuido Trotter <ultrotter@google.com>
Tue, 9 Sep 2008 10:41:38 +0000 (10:41 +0000)
committerGuido Trotter <ultrotter@google.com>
Tue, 9 Sep 2008 10:41:38 +0000 (10:41 +0000)
This will be used to lock the instance's nodes in addition to some more.

Reviewed-by: iustinp

lib/cmdlib.py
lib/constants.py

index 272f07f..6bd14b8 100644 (file)
@@ -298,7 +298,11 @@ class LogicalUnit(object):
       wanted_nodes.append(instance.primary_node)
       if not primary_only:
         wanted_nodes.extend(instance.secondary_nodes)
-    self.needed_locks[locking.LEVEL_NODE] = wanted_nodes
+
+    if self.recalculate_locks[locking.LEVEL_NODE] == constants.LOCKS_REPLACE:
+      self.needed_locks[locking.LEVEL_NODE] = wanted_nodes
+    elif self.recalculate_locks[locking.LEVEL_NODE] == constants.LOCKS_APPEND:
+      self.needed_locks[locking.LEVEL_NODE].extend(wanted_nodes)
 
     del self.recalculate_locks[locking.LEVEL_NODE]
 
index c3863ea..ba0e1d7 100644 (file)
@@ -190,6 +190,7 @@ REPLACE_DISK_ALL = "replace_all"
 
 # lock recalculate mode
 LOCKS_REPLACE = 'replace'
+LOCKS_APPEND = 'append'
 
 # instance creation modes
 INSTANCE_CREATE = "create"