diff options
author | Benoît Ganne <bganne@cisco.com> | 2020-06-30 18:17:06 +0200 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2020-07-01 20:39:01 +0000 |
commit | d25147d58117a573fd2fc04cdfa76339fa1cdf22 (patch) | |
tree | 0e44628d9499f7d45a8aa0944cc4847e137f90d6 /src/vppinfra | |
parent | 126c88544103d3775252f741398111875f6a62d7 (diff) |
vlib: wake up workers if interrupts are posted
Type: fix
Change-Id: If8dbbcb46193fd057fe8d704058609a3a8787d6c
Signed-off-by: Benoît Ganne <bganne@cisco.com>
Diffstat (limited to 'src/vppinfra')
-rw-r--r-- | src/vppinfra/vec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vppinfra/vec.h b/src/vppinfra/vec.h index df913c2b144..d4063e64bdc 100644 --- a/src/vppinfra/vec.h +++ b/src/vppinfra/vec.h @@ -119,7 +119,7 @@ void *vec_resize_allocate_memory (void *v, #define _vec_resize_numa(V,L,DB,HB,A,S) \ ({ \ __typeof__ ((V)) _V; \ - _V = _vec_resize_inline(V,L,DB,HB,clib_max((__alignof__((V)[0])),(A)),(S)); \ + _V = _vec_resize_inline((void *)V,L,DB,HB,clib_max((__alignof__((V)[0])),(A)),(S)); \ _V; \ }) |