Revision b2a6ccd4

b/daemons/ganeti-noded
340 340
  # volume  --------------------------
341 341

  
342 342
  @staticmethod
343
  def perspective_volume_list(params):
343
  def perspective_lv_list(params):
344 344
    """Query the list of logical volumes in a given volume group.
345 345

  
346 346
    """
b/lib/cmdlib.py
1335 1335
    if not nv_dict:
1336 1336
      return result
1337 1337

  
1338
    node_lvs = self.rpc.call_volume_list(nodes, vg_name)
1338
    node_lvs = self.rpc.call_lv_list(nodes, vg_name)
1339 1339

  
1340 1340
    to_act = set()
1341 1341
    for node in nodes:
b/lib/rpc.py
417 417
  # Begin RPC calls
418 418
  #
419 419

  
420
  def call_volume_list(self, node_list, vg_name):
420
  def call_lv_list(self, node_list, vg_name):
421 421
    """Gets the logical volumes present in a given volume group.
422 422

  
423 423
    This is a multi-node call.
424 424

  
425 425
    """
426
    return self._MultiNodeCall(node_list, "volume_list", [vg_name])
426
    return self._MultiNodeCall(node_list, "lv_list", [vg_name])
427 427

  
428 428
  def call_vg_list(self, node_list):
429 429
    """Gets the volume group list.

Also available in: Unified diff