def stop(self): """See IVswitch for general description Kills ovsdb and vswitchd and removes DPDK kernel modules. """ super(OvsDpdkVhost, self).stop() dpdk.cleanup()
def stop(self): """See IVswitch for general description Kills ovsdb and vswitchd and removes DPDK kernel modules. """ self._vswitchd.kill() dpdk.cleanup() dpdk.remove_vhost_modules()
def stop(self): """See IVswitch for general description Kills VPP and removes DPDK kernel modules. """ self._logger.info("Terminating VPP...") self.kill() self._logger.info("VPP...Terminated.") dpdk.cleanup()
def stop(self): """See IPktFwd for general description Kills testpmd. """ try: self._testpmd.send('stop') self._testpmd.wait('Done.', 5) self._testpmd.send('quit', 2) self._testpmd.kill() except pexpect.EOF: pass dpdk.cleanup()