diff options
author | Hanoh Haim <hhaim@cisco.com> | 2016-12-07 15:24:38 +0200 |
---|---|---|
committer | Hanoh Haim <hhaim@cisco.com> | 2016-12-21 13:01:05 +0200 |
commit | eae78d4356b8834b78a91c52d869a7949f8f3e90 (patch) | |
tree | 184156f8e653adfa33eb0e70838f45d2a92355d0 /src/stateless | |
parent | 539de1c6af63071c1da9ed5db668c500f8993a03 (diff) |
improve Stateful scheduler
Signed-off-by: Hanoh Haim <hhaim@cisco.com>
Diffstat (limited to 'src/stateless')
-rw-r--r-- | src/stateless/dp/trex_stream_node.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/stateless/dp/trex_stream_node.h b/src/stateless/dp/trex_stream_node.h index bc7be057..b74e0f62 100644 --- a/src/stateless/dp/trex_stream_node.h +++ b/src/stateless/dp/trex_stream_node.h @@ -42,6 +42,10 @@ public: uint8_t m_pad_end[104]; + /* CACHE_LINE */ + uint64_t m_pad3[8]; + + public: void free_command(); @@ -135,6 +139,9 @@ private: /* pad to match the size of CGenNode */ uint8_t m_pad_end[20]; + /* CACHE_LINE */ + uint64_t m_pad3[8]; + public: @@ -648,6 +655,9 @@ private: /* pad to match the size of CGenNode */ uint8_t m_pad_end[11]; + /* CACHE_LINE */ + uint64_t m_pad3[8]; + } __rte_cache_aligned; |