X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fvpp_vhost_interface.py;h=fd2928eac1d38687c20ffb7ed4a0c73881a76521;hb=37b445468e45b537621269fc1e375f26ca2100ee;hp=569fe36d1d64f9da7981df1e53bc682a61a02dc2;hpb=4208a4ce8d72d3fb6428527cde1fba7b397bd6f7;p=vpp.git diff --git a/test/vpp_vhost_interface.py b/test/vpp_vhost_interface.py index 569fe36d1d6..fd2928eac1d 100644 --- a/test/vpp_vhost_interface.py +++ b/test/vpp_vhost_interface.py @@ -6,8 +6,8 @@ class VppVhostInterface(VppInterface): def __init__(self, test, sock_filename, is_server=0, renumber=0, disable_mrg_rxbuf=0, disable_indirect_desc=0, gso=0, - custom_dev_instance=0, use_custom_mac=0, mac_address='', - tag=''): + packed_ring=0, custom_dev_instance=0, use_custom_mac=0, + mac_address='', tag=''): """ Create VPP Vhost interface """ super(VppVhostInterface, self).__init__(test) @@ -17,6 +17,7 @@ class VppVhostInterface(VppInterface): self.disable_mrg_rxbuf = disable_mrg_rxbuf self.disable_indirect_desc = disable_indirect_desc self.gso = gso + self.packed_ring = packed_ring self.custom_dev_instance = custom_dev_instance self.use_custom_mac = use_custom_mac self.mac_address = mac_address @@ -29,6 +30,7 @@ class VppVhostInterface(VppInterface): self.disable_mrg_rxbuf, self.disable_indirect_desc, self.gso, + self.packed_ring, self.custom_dev_instance, self.use_custom_mac, self.mac_address,