aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/VppConfigGenerator.py
diff options
context:
space:
mode:
authorPeter Mikus <pmikus@cisco.com>2018-01-03 09:33:51 +0100
committerPeter Mikus <pmikus@cisco.com>2018-01-03 11:47:51 +0000
commit7aa6f992b37bba91b4aaee2786ffe69e6d7b87af (patch)
tree09188583ef7e9930fede5e983dfc41ce3bb64419 /resources/libraries/python/VppConfigGenerator.py
parent0437095f4bf958154f25a3f163f432b22fcdc743 (diff)
Increase heapsize in default startup configuration
Change-Id: Ie9710d6901ab2d134e82a38f6eee1e9e5f88464c Signed-off-by: Peter Mikus <pmikus@cisco.com>
Diffstat (limited to 'resources/libraries/python/VppConfigGenerator.py')
-rw-r--r--resources/libraries/python/VppConfigGenerator.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/resources/libraries/python/VppConfigGenerator.py b/resources/libraries/python/VppConfigGenerator.py
index def23712e5..c1bde49742 100644
--- a/resources/libraries/python/VppConfigGenerator.py
+++ b/resources/libraries/python/VppConfigGenerator.py
@@ -180,6 +180,24 @@ class VppConfigGenerator(object):
path = ['api-segment', 'gid']
self.add_config_item(self._nodeconfig, value, path)
+ def add_api_segment_global_size(self, value):
+ """Add API-SEGMENT global-size configuration.
+
+ :param value: Global size.
+ :type value: str
+ """
+ path = ['api-segment', 'global-size']
+ self.add_config_item(self._nodeconfig, value, path)
+
+ def add_api_segment_api_size(self, value):
+ """Add API-SEGMENT api-size configuration.
+
+ :param value: API size.
+ :type value: str
+ """
+ path = ['api-segment', 'api-size']
+ self.add_config_item(self._nodeconfig, value, path)
+
def add_dpdk_dev(self, *devices):
"""Add DPDK PCI device configuration.
@@ -331,6 +349,15 @@ class VppConfigGenerator(object):
path = ['ip6', 'heap-size']
self.add_config_item(self._nodeconfig, value, path)
+ def add_ip_heap_size(self, value):
+ """Add IP heap-size configuration.
+
+ :param value: IP Heapsize amount.
+ :type value: str
+ """
+ path = ['ip', 'heap-size']
+ self.add_config_item(self._nodeconfig, value, path)
+
def add_plugin_disable(self, *plugins):
"""Add plugin disable for specific plugin.