numam-dpdk/lib/bpf
David Marchand 1094dd940e cleanup compat header inclusions
With symbols going though experimental/stable stages, we accumulated
a lot of discrepancies about inclusion of the rte_compat.h header.

Some headers are including it where unneeded, while others rely on
implicit inclusion.

Fix unneeded inclusions:
$ git grep -l include..rte_compat.h |
  xargs grep -LE '__rte_(internal|experimental)' |
  xargs sed -i -e '/#include..rte_compat.h/d'

Fix missing inclusion, by inserting rte_compat.h before the first
inclusion of a DPDK header:
$ git grep -lE '__rte_(internal|experimental)' |
  xargs grep -L include..rte_compat.h |
  xargs sed -i -e \
    '0,/#include..\(rte_\|.*pmd.h.$\)/{
      s/\(#include..\(rte_\|.*pmd.h.$\)\)/#include <rte_compat.h>\n\1/
    }'

Fix missing inclusion, by inserting rte_compat.h after the last
inclusion of a non DPDK header:
$ for file in $(git grep -lE '__rte_(internal|experimental)' |
  xargs grep -L include..rte_compat.h); do
    tac $file > $file.$$
    sed -i -e \
      '0,/#include../{
        s/\(#include..*$\)/#include <rte_compat.h>\n\n\1/
      }' $file.$$
    tac $file.$$ > $file
    rm $file.$$
  done

Fix missing inclusion, by inserting rte_compat.h after the header guard:
$ git grep -lE '__rte_(internal|experimental)' |
  xargs grep -L include..rte_compat.h |
  xargs sed -i -e \
    '0,/#define/{
      s/\(#define .*$\)/\1\n\n#include <rte_compat.h>/
    }'

And finally, exclude rte_compat.h itself.
$ git checkout lib/eal/include/rte_compat.h

At the end of all this, we have a clean tree:
$ git grep -lE '__rte_(internal|experimental)' |
  xargs grep -L include..rte_compat.h
buildtools/check-symbols.sh
devtools/checkpatches.sh
doc/guides/contributing/abi_policy.rst
doc/guides/rel_notes/release_20_11.rst
lib/eal/include/rte_compat.h

Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
2022-11-15 08:39:14 +01:00
..
bpf_convert.c fix spelling in comments and strings 2022-01-11 12:16:53 +01:00
bpf_def.h bpf: add missing C++ guards 2022-02-22 14:47:49 +01:00
bpf_dump.c bpf: add function to dump eBPF instructions 2021-10-22 22:07:48 +02:00
bpf_exec.c lib: remove unneeded header includes 2022-02-22 13:10:39 +01:00
bpf_impl.h bpf: fix build with some libpcap version on FreeBSD 2022-03-14 11:41:52 +01:00
bpf_jit_arm64.c eal: remove unneeded includes from a public header 2022-09-21 15:31:03 +02:00
bpf_jit_x86.c lib: remove unneeded header includes 2022-02-22 13:10:39 +01:00
bpf_load_elf.c fix spelling in comments and doxygen 2021-11-16 17:57:09 +01:00
bpf_load.c bpf: avoid useless memcpy call 2022-09-21 15:04:45 +02:00
bpf_pkt.c lib: remove unneeded header includes 2022-02-22 13:10:39 +01:00
bpf_stub.c build: cleanup libpcap dependent components 2021-11-10 11:42:34 +01:00
bpf_validate.c eal: remove unneeded includes from a public header 2022-09-21 15:31:03 +02:00
bpf.c lib: remove unneeded header includes 2022-02-22 13:10:39 +01:00
meson.build build: cleanup libpcap dependent components 2021-11-10 11:42:34 +01:00
rte_bpf_ethdev.h lib: remove librte_ prefix from directory names 2021-04-21 14:04:09 +02:00
rte_bpf.h cleanup compat header inclusions 2022-11-15 08:39:14 +01:00
version.map version: 22.11-rc0 2022-07-21 12:13:48 +02:00