summaryrefslogtreecommitdiff
path: root/nova/pci
diff options
context:
space:
mode:
Diffstat (limited to 'nova/pci')
-rw-r--r--nova/pci/manager.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/nova/pci/manager.py b/nova/pci/manager.py
index 2557aee806..04719f4f50 100644
--- a/nova/pci/manager.py
+++ b/nova/pci/manager.py
@@ -266,22 +266,6 @@ class PciDevTracker(object):
for dev in devs:
self._free_device(dev)
- def set_compute_node_id(self, node_id):
- """Set the compute node id that this object is tracking for.
-
- In current resource tracker implementation, the
- compute_node entry is created in the last step of
- update_available_resoruces, thus we have to lazily set the
- compute_node_id at that time.
- """
-
- if self.node_id and self.node_id != node_id:
- raise exception.PciTrackerInvalidNodeId(node_id=self.node_id,
- new_node_id=node_id)
- self.node_id = node_id
- for dev in self.pci_devs:
- dev.compute_node_id = node_id
-
def get_instance_pci_devs(inst, request_id=None):
"""Get the devices allocated to one or all requests for an instance.