From 889af5ca17aa11ccaa65fce188f72890e495cfa2 Mon Sep 17 00:00:00 2001 From: pmikus Date: Thu, 25 May 2023 08:49:39 +0000 Subject: [PATCH] fix(core): dual_socket support Signed-off-by: pmikus Change-Id: I881dda8b2fec32b8f489ec97df6592937f6193fa --- resources/libraries/python/TRexConfigGenerator.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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}" ) -- 2.16.6