Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make trex to run on x86 systems with more than 240 threads and sub-numa #1120

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 31 additions & 29 deletions scripts/dpdk_setup_ports.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,6 @@ class ConfigCreator(object):
_2hex_re = '[\da-fA-F]{2}'
mac_re = re.compile('^({0}:){{5}}{0}$'.format(_2hex_re))

if march == 'ppc64le':
MAX_LCORE_NUM = 159
else:
MAX_LCORE_NUM = 63

# cpu_topology - dict: physical processor -> physical core -> logical processing unit (thread)
# interfaces - array of dicts per interface, should include "mandatory_interface_fields" values
def __init__(self, cpu_topology, interfaces, include_lcores = [], exclude_lcores = [], only_first_thread = False, zmq_rpc_port = None, zmq_pub_port = None, prefix = None, ignore_numa = False, stack=None):
Expand Down Expand Up @@ -101,8 +96,6 @@ def __init__(self, cpu_topology, interfaces, include_lcores = [], exclude_lcores
cores[core].remove(lcore)
elif exclude_lcores and lcore in exclude_lcores:
cores[core].remove(lcore)
elif lcore > self.MAX_LCORE_NUM:
cores[core].remove(lcore)
if 0 in lcores:
self.has_zero_lcore = True
lcores.remove(0)
Expand Down Expand Up @@ -1165,44 +1158,53 @@ def do_return_to_linux(self):
def split_pci_key(self, pci_id):
return pci_id.split('/')[0]

def _get_cpu_topology(self):
cpu_topology = OrderedDict()
base_path = "/sys/devices/system/cpu"
cpus = []


def _list_cpus(self, base_path):
file_re = re.compile(base_path + '/cpu([0-9]+)$')
cpus = list()
for cpu_dir in glob.glob('{}/cpu*'.format(base_path)):
cpu_obj = file_re.match(cpu_dir)
if cpu_obj:
cpus.append(int(cpu_obj.group(1)))
cpus.sort()

for cpu in cpus:

# Find the socket ID of the current CPU
try:
with open("{}/cpu{}/topology/physical_package_id".format(base_path, cpu)) as f:
socket = int(f.read())
except IOError:
continue
except:
break
if socket not in cpu_topology:
cpu_topology[socket] = OrderedDict()
cores = OrderedDict()

for cpu in cpus:
# Find the core ID of the current CPU
try:
with open("{}/cpu{}/topology/core_id".format(base_path, cpu)) as f:
core = int(f.read())
with open("{}/cpu{}/topology/thread_siblings_list".format(base_path, cpu)) as f:
threads_list = [int(t) for t in f.read().split(",")]
except IOError:
continue
except:
break
if core not in cpu_topology[socket]:
cpu_topology[socket][core] = []
threads_list.sort()
main_tid = threads_list[0]
if main_tid not in cores:
cores[main_tid] = []

# Capture the socket/core of the current CPU
cpu_topology[socket][core].append(cpu)
for tid in threads_list:
if tid not in cores[main_tid]:
cores[main_tid].append(tid)
return cores


def _get_cpu_topology(self):
cpu_topology = OrderedDict()
base_path = "/sys/devices/system/node"

numa_nodes = list()
node_re = re.compile(base_path + '/node([0-9]+)$')
for node_dir in glob.glob('{}/node*'.format(base_path)):
numa_node = node_re.match(node_dir)
if numa_node:
numa_nodes.append(int(numa_node.group(1)))
numa_nodes.sort()

for numa_node in numa_nodes:
cpu_topology[numa_node] = self._list_cpus("{}/node{}".format(base_path, numa_node))

if not cpu_topology:
raise DpdkSetup('Could not determine CPU topology from %s' % base_path)
Expand Down
4 changes: 3 additions & 1 deletion src/main_dpdk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@ extern "C" {
#include "trex_defs.h"

#define MAX_PKT_BURST 32
#define BP_MAX_CORES 48
// It is not clear why that is limited here
// And probably everything around that requires a rework later
#define BP_MAX_CORES 256
#define BP_MASTER_AND_LATENCY 2

void set_driver();
Expand Down
2 changes: 1 addition & 1 deletion src/pal/linux_dpdk/dpdk_2303_x86_64/rte_build_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@

#define RTE_MAX_ETHPORTS 32

#define RTE_MAX_LCORE 128
#define RTE_MAX_LCORE 1536

#define RTE_MAX_MEM_MB 524288

Expand Down
10 changes: 3 additions & 7 deletions src/trex_defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,12 @@ limitations under the License.

#define TREX_MAX_PORTS 32

#ifdef __PPC64__
// Nobody tested trex with more sockets and threads, at least now
#define MAX_SOCKETS_SUPPORTED (16)
#define MAX_THREADS_SUPPORTED (1536)
#else
#define MAX_SOCKETS_SUPPORTED (4)
#define MAX_THREADS_SUPPORTED (120)
#endif

// 64 cores, each two digits, + 63 commas < 192
#define MAX_CORES_LIST_STRLEN 192
// 1536 cores, each two digits, + 1536 commas < 8192
#define MAX_CORES_LIST_STRLEN 8192

// maximum number of IP ID type flow stats we support. Must be in the form 2^x - 1
#define MAX_FLOW_STATS 1023
Expand Down