Message ID | 20210412082901.652736-2-kda@semihalf.com (mailing list archive) |
---|---|
State | Accepted, archived |
Delegated to: | David Marchand |
Headers | show |
Series | add lock-free stack support discovery | expand |
Context | Check | Description |
---|---|---|
ci/checkpatch | success | coding style OK |
On Mon, Apr 12, 2021 at 10:28:59AM +0200, Stanislaw Kardach wrote: > Since 7911ba047 lock-free stack is supported on arm64 but this > description was missing from the doxygen for the flag. > > Signed-off-by: Stanislaw Kardach <kda@semihalf.com> > Fixes: 7911ba0473e0 ("stack: enable lock-free implementation for aarch64") > Cc: phil.yang@arm.com > Cc: stable@dpdk.org Acked-by: Olivier Matz <olivier.matz@6wind.com>
diff --git a/lib/librte_stack/rte_stack.h b/lib/librte_stack/rte_stack.h index 395b9ef83..b82c74e72 100644 --- a/lib/librte_stack/rte_stack.h +++ b/lib/librte_stack/rte_stack.h @@ -89,7 +89,7 @@ struct rte_stack { /** * The stack uses lock-free push and pop functions. This flag is only - * supported on x86_64 platforms, currently. + * supported on x86_64 or arm64 platforms, currently. */ #define RTE_STACK_F_LF 0x0001
Since 7911ba047 lock-free stack is supported on arm64 but this description was missing from the doxygen for the flag. Signed-off-by: Stanislaw Kardach <kda@semihalf.com> Fixes: 7911ba0473e0 ("stack: enable lock-free implementation for aarch64") Cc: phil.yang@arm.com Cc: stable@dpdk.org --- lib/librte_stack/rte_stack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)