From: pmikus Date: Thu, 25 May 2023 08:49:39 +0000 (+0000) Subject: fix(core): dual_socket support X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=commitdiff_plain;h=889af5ca17aa11ccaa65fce188f72890e495cfa2 fix(core): dual_socket support Signed-off-by: pmikus Change-Id: I881dda8b2fec32b8f489ec97df6592937f6193fa --- diff --git a/resources/libraries/python/TRexConfigGenerator.py b/resources/libraries/python/TRexConfigGenerator.py index 2015b09ad2..5ecde86dcb 100644 --- a/resources/libraries/python/TRexConfigGenerator.py +++ b/resources/libraries/python/TRexConfigGenerator.py @@ -244,7 +244,7 @@ class TrexInitConfig: latency_thread_id = None cores = None limit_memory = f"{Constants.TREX_LIMIT_MEMORY}" - sockets = 0 + sockets = list() for link in tg_topology: pci_addresses.append( @@ -264,8 +264,8 @@ class TrexInitConfig: dst_mac=link["dst_mac"] ) ) - sockets = sockets | socket - if sockets: + sockets.append(socket) + if 0 in sockets and 1 in sockets: limit_memory = ( f"{Constants.TREX_LIMIT_MEMORY},{Constants.TREX_LIMIT_MEMORY}" )