numam-dpdk/drivers/common/idpf/base
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
..
idpf_alloc.h common/idpf: introduce common library 2022-10-31 11:45:54 +01:00
idpf_common.c common/idpf/base: fix possible null dereference 2022-11-09 16:52:54 +01:00
idpf_controlq_api.h cleanup compat header inclusions 2022-11-15 08:39:14 +01:00
idpf_controlq_setup.c common/idpf: introduce common library 2022-10-31 11:45:54 +01:00
idpf_controlq.c common/idpf: introduce common library 2022-10-31 11:45:54 +01:00
idpf_controlq.h common/idpf: introduce common library 2022-10-31 11:45:54 +01:00
idpf_devids.h common/idpf: introduce common library 2022-10-31 11:45:54 +01:00
idpf_lan_pf_regs.h common/idpf: introduce common library 2022-10-31 11:45:54 +01:00
idpf_lan_txrx.h common/idpf: introduce common library 2022-10-31 11:45:54 +01:00
idpf_lan_vf_regs.h common/idpf: introduce common library 2022-10-31 11:45:54 +01:00
idpf_osdep.h common/idpf: introduce common library 2022-10-31 11:45:54 +01:00
idpf_prototype.h common/idpf: introduce common library 2022-10-31 11:45:54 +01:00
idpf_type.h common/idpf: introduce common library 2022-10-31 11:45:54 +01:00
meson.build common/idpf: introduce common library 2022-10-31 11:45:54 +01:00
README common/idpf/base: add readme file 2022-11-09 11:10:59 +01:00
siov_regs.h common/idpf: introduce common library 2022-10-31 11:45:54 +01:00
virtchnl2_lan_desc.h common/idpf: introduce common library 2022-10-31 11:45:54 +01:00
virtchnl2.h common/idpf: introduce common library 2022-10-31 11:45:54 +01:00
virtchnl_inline_ipsec.h common/idpf: introduce common library 2022-10-31 11:45:54 +01:00
virtchnl.h common/idpf: introduce common library 2022-10-31 11:45:54 +01:00

/* SPDX-License-Identifier: BSD-3-Clause
 * Copyright(c) 2021-2022 Intel Corporation
 */

Intel® IDPF driver
==================

This directory contains source code of BSD-3-Clause idpf driver of version
2022.09.13 released by the team which develops basic drivers for Intel IPU.
The directory of base/ contains the original source package.
This driver is valid for the product(s) listed below

* Intel® IPU E2100

Updating the driver
===================

NOTE: The source code in this directory should not be modified apart from
the following file(s):

    idpf_osdep.h