numam-dpdk/drivers/crypto/octeontx
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
..
meson.build drivers/crypto: move Windows build check 2021-11-04 19:43:14 +01:00
otx_cryptodev_capabilities.c common/cpt: support variable key size for HMAC 2020-02-05 15:29:14 +01:00
otx_cryptodev_capabilities.h crypto/octeontx: add asymmetric session operations 2019-10-23 16:57:06 +02:00
otx_cryptodev_hw_access.c fix spelling in comments and strings 2022-01-11 12:16:53 +01:00
otx_cryptodev_hw_access.h cryptodev: rework session framework 2022-10-04 22:04:59 +02:00
otx_cryptodev_mbox.c crypto/octeontx: add device type mailbox routine 2019-10-23 16:57:06 +02:00
otx_cryptodev_mbox.h fix spelling in comments and strings 2022-01-11 12:16:53 +01:00
otx_cryptodev_ops.c cryptodev: hide symmetric session structure 2022-10-04 22:29:01 +02:00
otx_cryptodev_ops.h cleanup compat header inclusions 2022-11-15 08:39:14 +01:00
otx_cryptodev.c bus/pci: make driver-only headers private 2022-09-23 16:14:34 +02:00
otx_cryptodev.h crypto/octeontx: add crypto adapter framework 2021-07-07 21:28:39 +02:00
version.map version: 22.11-rc0 2022-07-21 12:13:48 +02:00