Re: [dpdk-dev] [PATCH] packet_ordering: replace sync builtins with atomic builtins

2019-03-28 Thread Phil Yang (Arm Technology China)
> -Original Message- > From: Thomas Monjalon > Sent: Friday, March 29, 2019 2:43 AM > To: Phil Yang (Arm Technology China) > Cc: dev@dpdk.org; nd ; Honnappa Nagarahalli > > Subject: Re: [dpdk-dev] [PATCH] packet_ordering: replace sync builtins with > atomic bui

Re: [dpdk-dev] [PATCH] packet_ordering: replace sync builtins with atomic builtins

2019-03-28 Thread Thomas Monjalon
03/01/2019 10:49, Phil Yang: > '__sync' builtins are deprecated, use '__atomic' builtins instead for > packet_ordering. > > Fixes: 850f373 ("examples/packet_ordering: new sample app") > > Signed-off-by: Phil Yang > Reviewed-by: Gavin Hu > Reviewed-by: Ruifeng Wang Am I right there will be a n

[dpdk-dev] [PATCH] packet_ordering: replace sync builtins with atomic builtins

2019-01-03 Thread Phil Yang
'__sync' builtins are deprecated, use '__atomic' builtins instead for packet_ordering. Fixes: 850f373 ("examples/packet_ordering: new sample app") Signed-off-by: Phil Yang Reviewed-by: Gavin Hu Reviewed-by: Ruifeng Wang --- examples/packet_ordering/main.c | 27 +++ 1