[V2,2/2] framework/virt_base: add pin_threads parameter when start VM

Message ID 20221202044253.1180232-1-weix.ling@intel.com (mailing list archive)
State Superseded
Headers
Series support pin VM's thread to vhost CPU lcore |

Checks

Context Check Description
ci/Intel-dts-format-test success Testing OK
ci/Intel-dts-pylama-test fail Testing issues
ci/Intel-dts-suite-test success Testing OK

Commit Message

Ling, WeiX Dec. 2, 2022, 4:42 a.m. UTC
  Add pin_threads parameter when start VM default pin_threads=True.

Signed-off-by: Wei Ling <weix.ling@intel.com>
---
 framework/virt_base.py | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)
  

Patch

diff --git a/framework/virt_base.py b/framework/virt_base.py
index a7fc8c4e..b48d3f89 100644
--- a/framework/virt_base.py
+++ b/framework/virt_base.py
@@ -273,7 +273,14 @@  class VirtBase(object):
         self._attach_vm()
         return None
 
-    def start(self, load_config=True, set_target=True, cpu_topo="", bind_dev=True):
+    def start(
+        self,
+        load_config=True,
+        set_target=True,
+        cpu_topo="",
+        bind_dev=True,
+        pin_threads=True,
+    ):
         """
         Start VM and instantiate the VM with VirtDut.
         """
@@ -284,7 +291,7 @@  class VirtBase(object):
             self.compose_boot_param()
 
             # start virtual machine
-            self._start_vm()
+            self._start_vm(pin_threads=pin_threads)
 
             if self.vm_status is ST_RUNNING:
                 # connect vm dut and init running environment