numam-dpdk/lib/librte_kvargs
David Marchand cfe3aeb170 remove experimental tags from all symbol definitions
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

Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
2019-06-29 19:04:43 +02:00
..
Makefile kvargs: build before EAL 2018-07-15 23:42:16 +02:00
meson.build compat: merge compat library into EAL 2019-02-25 16:03:31 +01:00
rte_kvargs_version.map kvargs: add generic string matching callback 2018-07-15 23:44:22 +02:00
rte_kvargs.c remove experimental tags from all symbol definitions 2019-06-29 19:04:43 +02:00
rte_kvargs.h kvargs: fix processing a null list 2018-10-24 15:06:46 +02:00