mbuf: add namespace to offload flagsFix the mbuf offload flags namespace by adding an RTE_ prefix to thename. The old flags remain usable, but a deprecation warning is issuedat compilation.Sign
mbuf: add namespace to offload flagsFix the mbuf offload flags namespace by adding an RTE_ prefix to thename. The old flags remain usable, but a deprecation warning is issuedat compilation.Signed-off-by: Olivier Matz <olivier.matz@6wind.com>Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>Acked-by: Ajit Khaparde <ajit.khaparde@broadcom.com>Acked-by: Somnath Kotur <somnath.kotur@broadcom.com>
show more ...
examples: remove old build system referencesRemove the references to RTE_SDK and RTE_TARGET environment variables fromthe build instructions in the comments of the various BPF files, and inthe ip
examples: remove old build system referencesRemove the references to RTE_SDK and RTE_TARGET environment variables fromthe build instructions in the comments of the various BPF files, and inthe ipsec-secgw common definition script.Signed-off-by: Ciara Power <ciara.power@intel.com>Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
examples/bpf: remove from list of examples to buildThe examples/bpf directory does not contain an example app, but ratherexample code for use with testpmd's BPF support. Therefore, we should nota
examples/bpf: remove from list of examples to buildThe examples/bpf directory does not contain an example app, but ratherexample code for use with testpmd's BPF support. Therefore, we should notattempt to build it when the user requests "examples=all". This alsosynchronises the meson behaviour with make which similarly doesn't compileup the code.Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>Acked-by: Luca Boccassi <bluca@debian.org>
examples/bpf: remove duplicate mbuf definitionGet rid of duplicate definitions for rte_mbuf and related macros.Include rte_mbuf_core.h instead.Signed-off-by: Konstantin Ananyev <konstantin.anany
examples/bpf: remove duplicate mbuf definitionGet rid of duplicate definitions for rte_mbuf and related macros.Include rte_mbuf_core.h instead.Signed-off-by: Konstantin Ananyev <konstantin.ananyev@intel.com>Acked-by: Michel Machado <michel@digirati.com.br>
examples/bpf: fix buildExample BPF programs t2.c, t3.c in folder examples/bpf arefailing to compile with latest dpdk.org master.The reason is changes in some core DPDK header files, that causesn
examples/bpf: fix buildExample BPF programs t2.c, t3.c in folder examples/bpf arefailing to compile with latest dpdk.org master.The reason is changes in some core DPDK header files, that causesnow inclusion of x86 specific headers.To overcome the issue, minimize inclusion of DPDK header filesinto BPF source code.Bugzilla ID: 321Fixes: 9dfc06c26a8b ("test/bpf: add samples")Cc: stable@dpdk.orgReported-by: Michel Machado <michel@digirati.com.br>Suggested-by: Michel Machado <michel@digirati.com.br>Signed-off-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
examples/bpf: move from test directoryThe bpf folder didn't actual contain a test application, but insteadbasic examples of BPF code for use with testpmd. Therefore we canmove it to the `examples
examples/bpf: move from test directoryThe bpf folder didn't actual contain a test application, but insteadbasic examples of BPF code for use with testpmd. Therefore we canmove it to the `examples` folder. Being different, it also needsa README with it, explaining what it is and how to use it. Referencesto the code from the testpmd docs are suitably updated.Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>