diff options
author | Florin Coras <fcoras@cisco.com> | 2017-07-31 17:18:03 -0700 |
---|---|---|
committer | Florin Coras <fcoras@cisco.com> | 2017-08-02 01:49:39 -0700 |
commit | 66b11318a1e5f24880e3ec77c95d70647732a4a8 (patch) | |
tree | 5711f1b28863d0a2130f6370f39c7777ea34b07e /src/vppinfra | |
parent | fdbc38249a8c672937a74667dcfaafa2cfd292e7 (diff) |
Fix tcp tx buffer allocation
- Make tcp output buffer allocation macro an inline function
- Use per ip version per thread tx frames for retransmits and timer
events
- Fix / parameterize tcp data structure preallocation
- Add a couple of gdb-callable show commands
- Fix local endpoint cleanup
Change-Id: I67b47b7570aa14cb4634b6fd93c57cd2eacbfa29
Signed-off-by: Florin Coras <fcoras@cisco.com>
Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'src/vppinfra')
-rw-r--r-- | src/vppinfra/pool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vppinfra/pool.h b/src/vppinfra/pool.h index 57838e1c609..56536b77963 100644 --- a/src/vppinfra/pool.h +++ b/src/vppinfra/pool.h @@ -200,7 +200,7 @@ do { \ #define pool_get(P,E) pool_get_aligned(P,E,0) /** See if pool_get will expand the pool or not */ -#define pool_get_aligned_will_expand (P,YESNO,A) \ +#define pool_get_aligned_will_expand(P,YESNO,A) \ do { \ pool_header_t * _pool_var (p) = pool_header (P); \ uword _pool_var (l); \ |