summaryrefslogtreecommitdiff
path: root/nics
diff options
context:
space:
mode:
authorLijuan Tu <lijuanx.a.tu@intel.com>2017-01-19 14:47:08 +0800
committerMarvin Liu <yong.liu@intel.com>2017-01-19 14:46:32 +0800
commit1fac2999ef809c03f8c7738217fe0201ad8c118e (patch)
treef1cb2d5ffe208d30f0ca354e543e80ac9c9a4fe8 /nics
parentea94fb519bfc6635b5f73e27a40353fa0866bc27 (diff)
framework net_device: fix arguments error
Signed-off-by: Lijuan Tu <lijuanx.a.tu@intel.com>
Diffstat (limited to 'nics')
-rw-r--r--nics/net_device.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nics/net_device.py b/nics/net_device.py
index a2697b3..ba3d9c2 100644
--- a/nics/net_device.py
+++ b/nics/net_device.py
@@ -548,7 +548,7 @@ class NetDevice(object):
self, 'get_sriov_vfs_pci_%s' % self.__get_os_type())
return get_sriov_vfs_pci(self.domain_id, self.bus_id, self.devfun_id, self.current_driver)
- def get_sriov_vfs_pci_freebsd(self, bus_id, devfun_id, driver):
+ def get_sriov_vfs_pci_freebsd(self, domain_id, bus_id, devfun_id, driver):
"""
FreeBSD not support virtualization cases now.
We can implement it later.