diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2020-01-15 06:29:16 +0000 |
---|---|---|
committer | Vratko Polak <vrpolak@cisco.com> | 2020-01-30 12:33:16 +0000 |
commit | d79b753c1fde3cd831f60ac5cc0034f613c44b43 (patch) | |
tree | 2dea775b6868781b2b25b5caaceeadbfaac6e94f /resources/libraries/python/VppConfigGenerator.py | |
parent | 20e972ce413e727b0a3d89d04460534cb454f107 (diff) |
perf: Add hoststack NSIM+LDPRELOAD+IPERF3 test suite
Change-Id: Ia7a876b1aa240676e1f2d23618c1d4e09ead14f0
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'resources/libraries/python/VppConfigGenerator.py')
-rw-r--r-- | resources/libraries/python/VppConfigGenerator.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/resources/libraries/python/VppConfigGenerator.py b/resources/libraries/python/VppConfigGenerator.py index 7a687ae200..b769b89acd 100644 --- a/resources/libraries/python/VppConfigGenerator.py +++ b/resources/libraries/python/VppConfigGenerator.py @@ -495,6 +495,11 @@ class VppConfigGenerator: path = [u"nat"] self.add_config_item(self._nodeconfig, value, path) + def add_nsim_poll_main_thread(self): + """Add NSIM poll-main-thread configuration.""" + path = [u"nsim", u"poll-main-thread"] + self.add_config_item(self._nodeconfig, u"", path) + def add_tcp_congestion_control_algorithm(self, value=u"cubic"): """Add TCP congestion control algorithm. |