numam-dpdk/drivers/baseband/acc
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
..
acc100_pf_enum.h baseband/acc: rename directory from acc100 to acc 2022-10-29 13:01:38 +02:00
acc100_pmd.h baseband/acc100: fix PMon register values 2022-11-03 09:21:28 +01:00
acc100_vf_enum.h baseband/acc: rename directory from acc100 to acc 2022-10-29 13:01:38 +02:00
acc101_pmd.h baseband/acc: rename directory from acc100 to acc 2022-10-29 13:01:38 +02:00
acc200_cfg.h baseband/acc200: add PF configuration 2022-10-29 13:01:39 +02:00
acc200_pf_enum.h baseband/acc200: add HW register definitions 2022-10-29 13:01:38 +02:00
acc200_pmd.h baseband/acc200: add PF configuration 2022-10-29 13:01:39 +02:00
acc200_vf_enum.h baseband/acc200: add HW register definitions 2022-10-29 13:01:38 +02:00
acc_common.h baseband/acc100: detect deRM corner cases 2022-11-07 05:38:34 +01:00
meson.build baseband/acc: remove dependencies not required 2022-10-29 13:01:39 +02:00
rte_acc100_pmd.c baseband/acc100: fix input error related to padding 2022-11-08 14:42:25 +01:00
rte_acc200_pmd.c baseband/acc200: fix possible negative shift 2022-11-03 12:26:17 +01:00
rte_acc_cfg.h cleanup compat header inclusions 2022-11-15 08:39:14 +01:00
rte_acc_common_cfg.h baseband/acc200: add PF configuration 2022-10-29 13:01:39 +02:00
version.map baseband/acc200: add PF configuration 2022-10-29 13:01:39 +02:00