numam-dpdk/drivers/net/txgbe
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
..
base net/txgbe: rename some extended statistics 2022-09-21 13:46:58 +02:00
meson.build net/txgbe: add copyright owner 2021-04-29 17:01:06 +02:00
rte_pmd_txgbe.h cleanup compat header inclusions 2022-11-15 08:39:14 +01:00
txgbe_ethdev_vf.c ethdev: add error handling mode to device info 2022-10-17 08:26:36 +02:00
txgbe_ethdev.c ethdev: increase queue rate parameter from 16b to 32b 2022-10-04 13:52:05 +02:00
txgbe_ethdev.h ethdev: increase queue rate parameter from 16b to 32b 2022-10-04 13:52:05 +02:00
txgbe_fdir.c net/txgbe: add helper to get Flow Director configuration 2022-08-31 15:24:22 +02:00
txgbe_flow.c net/txgbe: fix IPv6 flow rule 2022-09-21 13:46:57 +02:00
txgbe_ipsec.c net/txgbe: fix security session destroy 2022-10-25 17:33:30 +02:00
txgbe_ipsec.h net/txgbe: add copyright owner 2021-04-29 17:01:06 +02:00
txgbe_logs.h net/txgbe: fix debug logs 2022-02-23 14:58:22 +01:00
txgbe_pf.c bus/pci: make driver-only headers private 2022-09-23 16:14:34 +02:00
txgbe_ptypes.c remove extra blank line at EOF 2022-02-27 21:26:06 +01:00
txgbe_ptypes.h net/txgbe: add copyright owner 2021-04-29 17:01:06 +02:00
txgbe_regs_group.h net/txgbe: add copyright owner 2021-04-29 17:01:06 +02:00
txgbe_rxtx.c remove extra blank line at EOF 2022-02-27 21:26:06 +01:00
txgbe_rxtx.h ethdev: add namespace 2021-10-22 18:15:38 +02:00
txgbe_tm.c ethdev: add namespace 2021-10-22 18:15:38 +02:00