diff options
author | imarom <imarom@cisco.com> | 2016-11-02 13:46:05 +0200 |
---|---|---|
committer | imarom <imarom@cisco.com> | 2016-11-02 13:52:16 +0200 |
commit | 5ab7411f67636afc407701d4cf87a5060e5b8aa9 (patch) | |
tree | 261446f44c1f8d7edf5aa16c0f48c7ebe3a28c3d /src/stateless/cp/trex_stateless.cpp | |
parent | aafa0ec65f83a6cb9f14782d90df42a8e6e412c3 (diff) |
Trex threads - pin DPDK master thread to the master core
also, some names to the threads to make things clear
and a script to show them
Signed-off-by: imarom <imarom@cisco.com>
Diffstat (limited to 'src/stateless/cp/trex_stateless.cpp')
-rw-r--r-- | src/stateless/cp/trex_stateless.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/stateless/cp/trex_stateless.cpp b/src/stateless/cp/trex_stateless.cpp index 6029cbd5..0a7f8533 100644 --- a/src/stateless/cp/trex_stateless.cpp +++ b/src/stateless/cp/trex_stateless.cpp @@ -112,15 +112,6 @@ void TrexStateless::shutdown() { void TrexStateless::launch_control_plane() { - /* pin this process to the current running CPU - any new thread will be called on the same CPU - (control plane restriction) - */ - cpu_set_t mask; - CPU_ZERO(&mask); - CPU_SET(sched_getcpu(), &mask); - sched_setaffinity(0, sizeof(mask), &mask); - /* start RPC server */ m_rpc_server->start(); } |