numam-dpdk/lib/librte_ip_frag
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
..
ip_frag_common.h ip_frag: use key length for key comparison 2018-11-06 01:58:11 +01:00
ip_frag_internal.c ip_frag: add function to delete expired entries 2018-09-19 19:45:38 +02:00
Makefile lib: use SPDX tag for Intel copyright files 2018-01-04 22:41:39 +01:00
meson.build build: replace license text with SPDX tag 2018-01-30 21:58:59 +01:00
rte_ip_frag_common.c remove experimental tags from all symbol definitions 2019-06-29 19:04:43 +02:00
rte_ip_frag_version.map fix indentation in symbol maps 2018-11-26 20:16:46 +01:00
rte_ip_frag.h net: add rte prefix to IP defines 2019-05-24 13:34:46 +02:00
rte_ipv4_fragmentation.c net: add rte prefix to IP defines 2019-05-24 13:34:46 +02:00
rte_ipv4_reassembly.c net: add rte prefix to IP defines 2019-05-24 13:34:46 +02:00
rte_ipv6_fragmentation.c ip_frag: fix IPv6 fragment size calculation 2019-06-27 18:05:46 +02:00
rte_ipv6_reassembly.c net: add rte prefix to IP structure 2019-05-24 13:34:46 +02:00