[dpdk-dev] [PATCH 8/9] remove experimental tags from all symbol definitions

Thomas Monjalon thomas at monjalon.net
Fri Jun 28 17:56:13 CEST 2019


27/06/2019 13:33, David Marchand:
> We had some inconsistencies between functions prototypes and actual
> definitions.
> Let's avoid this by only adding the experimental tag to the prototypes.
> Tests with gcc and clang show it is enough.
> 
> git grep -l __rte_experimental |grep \.c$ |while read file; do
> 	sed -i -e '/^__rte_experimental$/d' $file;
> 	sed -i -e 's/  *__rte_experimental//' $file;
> 	sed -i -e 's/__rte_experimental  *//' $file;
> done

There is one miss:

rte_telemetry_parse is not flagged as experimental
but is listed in version map
Please add __rte_experimental to the definition of rte_telemetry_parse

If it is the only change, I can do it.





More information about the dev mailing list