From: David Marchand Date: Thu, 10 Feb 2022 08:55:43 +0000 (+0100) Subject: stack: fix stubs header export X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=8adf5f528bf3321feeae2231007ebae162032739;p=dpdk.git stack: fix stubs header export The stubs header is included as part of rte_stack.h for architectures other than x86_64 and aarch64 (i.e. x86 32 bits and ppc). Note: chkincs won't catch this issue since it checks headers from within the source directory. Fixes: 7911ba0473e0 ("stack: enable lock-free implementation for aarch64") Cc: stable@dpdk.org Signed-off-by: David Marchand --- diff --git a/lib/stack/meson.build b/lib/stack/meson.build index 2f53f49677..18177a742f 100644 --- a/lib/stack/meson.build +++ b/lib/stack/meson.build @@ -9,4 +9,5 @@ indirect_headers += files( 'rte_stack_lf.h', 'rte_stack_lf_generic.h', 'rte_stack_lf_c11.h', + 'rte_stack_lf_stubs.h', )