diff options
author | 2017-08-11 20:40:47 +0200 | |
---|---|---|
committer | 2017-12-14 15:18:05 +0100 | |
commit | c322d05e95fe19ff91dc4b44b83beef3088f5523 (patch) | |
tree | 8d004b335f3c180ed40600061be92f1a910e81a6 /src/plugins/odp/buffer.c | |
parent | 99e97518e5fca260cb4e410838cc0c1ef70ac42d (diff) |
Move odp_packet_main structure to shared memory.
This structure contains data shared among multiple threads and
must be globally accessible.
Change-Id: Ibde8222e9ed3f61561f7902750a1716da5c0bd81
Signed-off-by: Michal Mazur <mkm@semihalf.com>
Diffstat (limited to 'src/plugins/odp/buffer.c')
-rw-r--r-- | src/plugins/odp/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/odp/buffer.c b/src/plugins/odp/buffer.c index b347bbae..7c410c2d 100644 --- a/src/plugins/odp/buffer.c +++ b/src/plugins/odp/buffer.c @@ -18,7 +18,7 @@ u32 odp_packet_buffer_alloc (vlib_main_t * vm, u32 * buffers, u32 n_buffers) { - odp_packet_main_t *om = &odp_packet_main; + odp_packet_main_t *om = odp_packet_main; u32 len = SHM_PKT_BUF_SIZE, total = 0; odp_packet_t pkt; |