summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Koelker <jason@koelker.net>2011-09-14 13:47:35 -0500
committerJason Koelker <jason@koelker.net>2011-09-14 13:47:35 -0500
commitee11a4661bb855c354ae567fd18b8b3274d05df8 (patch)
treed79dc0b63c54e9bc75af8760b1e80271d1f8cef9
parentffddc029198b88d0a2cd42e6c5e9d21a6ad259fa (diff)
get all the vifs
-rw-r--r--nova/db/api.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/nova/db/api.py b/nova/db/api.py
index c32189cc0..0db4622c9 100644
--- a/nova/db/api.py
+++ b/nova/db/api.py
@@ -460,6 +460,11 @@ def virtual_interface_delete_by_instance(context, instance_id):
return IMPL.virtual_interface_delete_by_instance(context, instance_id)
+def virtual_interface_get_all(context):
+ """Gets all virtual interfaces from the table,"""
+ return IMPL.virtual_interface_get_all(context)
+
+
####################