numam-dpdk/lib/librte_ipsec
David Marchand 18218713bf enforce experimental tag at beginning of declarations
Putting a '__attribute__((deprecated))' in the middle of a function
prototype does not result in the expected result with gcc (while clang
is fine with this syntax).

$ cat deprecated.c
void * __attribute__((deprecated)) incorrect() { return 0; }
__attribute__((deprecated)) void *correct(void) { return 0; }
int main(int argc, char *argv[]) { incorrect(); correct(); return 0; }
$ gcc -o deprecated.o -c deprecated.c
deprecated.c: In function ‘main’:
deprecated.c:3:1: warning: ‘correct’ is deprecated (declared at
deprecated.c:2) [-Wdeprecated-declarations]
 int main(int argc, char *argv[]) { incorrect(); correct(); return 0; }
 ^

Move the tag on a separate line and make it the first thing of function
prototypes.
This is not perfect but we will trust reviewers to catch the other not
so easy to detect patterns.

sed -i \
     -e '/^\([^#].*\)\?__rte_experimental */{' \
     -e 's//\1/; s/ *$//; i\' \
     -e __rte_experimental \
     -e '/^$/d}' \
     $(git grep -l __rte_experimental -- '*.h')

Special mention for rte_mbuf_data_addr_default():

There is either a bug or a (not yet understood) issue with gcc.
gcc won't drop this inline when unused and rte_mbuf_data_addr_default()
calls rte_mbuf_buf_addr() which itself is experimental.
This results in a build warning when not accepting experimental apis
from sources just including rte_mbuf.h.

For this specific case, we hide the call to rte_mbuf_buf_addr() under
the ALLOW_EXPERIMENTAL_API flag.

Signed-off-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
Signed-off-by: David Marchand <david.marchand@redhat.com>
2019-06-29 19:04:48 +02:00
..
crypto.h net: add rte prefix to ESP structure 2019-05-24 13:34:45 +02:00
esp_inb.c net: add rte prefix to ESP structure 2019-05-24 13:34:45 +02:00
esp_outb.c net: add rte prefix to ESP structure 2019-05-24 13:34:45 +02:00
iph.h net: add rte prefix to IP structure 2019-05-24 13:34:46 +02:00
ipsec_sqn.h ipsec: reorder packet process for ESP inbound 2019-04-02 16:50:24 +02:00
Makefile ipsec: move inbound and outbound code 2019-04-02 16:50:24 +02:00
meson.build ipsec: fix headers install 2019-05-09 15:21:39 +02:00
misc.h doc: fix spelling reported by aspell in comments 2019-05-03 00:38:14 +02:00
pad.h ipsec: implement SA data-path API 2019-01-10 16:57:22 +01:00
rte_ipsec_group.h enforce experimental tag at beginning of declarations 2019-06-29 19:04:48 +02:00
rte_ipsec_sa.h enforce experimental tag at beginning of declarations 2019-06-29 19:04:48 +02:00
rte_ipsec_version.map ipsec: add helpers to group completed crypto-ops 2019-01-10 16:57:22 +01:00
rte_ipsec.h enforce experimental tag at beginning of declarations 2019-06-29 19:04:48 +02:00
sa.c remove experimental tags from all symbol definitions 2019-06-29 19:04:43 +02:00
sa.h ipsec: move inbound and outbound code 2019-04-02 16:50:24 +02:00
ses.c remove experimental tags from all symbol definitions 2019-06-29 19:04:43 +02:00