From: Marat Khalili <marat.khalili@huawei.com>
To: Thomas Monjalon <thomas@monjalon.net>
Cc: Konstantin Ananyev <konstantin.ananyev@huawei.com>,
Wathsala Vithanage <wathsala.vithanage@arm.com>,
"dev@dpdk.org" <dev@dpdk.org>
Subject: RE: [PATCH v4 02/11] bpf: introduce extensible load API
Date: Fri, 12 Jun 2026 10:48:37 +0000 [thread overview]
Message-ID: <0610e3575ac44cf9b62e7f38a4b5c2ab@huawei.com> (raw)
In-Reply-To: <n9qJkNlCQDazx_P9i-5XTQ@monjalon.net>
> Unfortunately, compilation is failing on this patch:
>
> lib/bpf/bpf_load.c:274:40: error: 'struct rte_bpf_jit' has no member named 'raw'
Sent v5 fixing the issue, apologies for sending without double-checking
compilability of individual commits on my side.
next prev parent reply other threads:[~2026-06-12 10:50 UTC|newest]
Thread overview: 62+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-06 17:21 [PATCH 00/10] bpf: introduce extensible load API Marat Khalili
2026-05-06 17:21 ` [PATCH 01/10] bpf: make logging prefixes more consistent Marat Khalili
2026-05-06 17:21 ` [PATCH 02/10] bpf: introduce extensible load API Marat Khalili
2026-05-06 17:22 ` [PATCH 03/10] bpf: support up to 5 arguments Marat Khalili
2026-05-06 17:22 ` [PATCH 04/10] bpf: add cBPF origin to rte_bpf_load_ex Marat Khalili
2026-05-06 17:22 ` [PATCH 05/10] bpf: support rte_bpf_prm_ex with port callbacks Marat Khalili
2026-05-06 17:22 ` [PATCH 06/10] bpf: support loading ELF files from memory Marat Khalili
2026-05-06 17:22 ` [PATCH 07/10] test/bpf: test loading cBPF directly Marat Khalili
2026-05-06 17:22 ` [PATCH 08/10] test/bpf: test loading ELF file from memory Marat Khalili
2026-05-06 17:22 ` [PATCH 09/10] doc: add release notes for new extensible BPF API Marat Khalili
2026-05-06 17:22 ` [PATCH 10/10] doc: add load API to BPF programmer's guide Marat Khalili
2026-05-09 12:36 ` [PATCH 00/10] bpf: introduce extensible load API Konstantin Ananyev
2026-05-14 9:37 ` [PATCH v2 " Marat Khalili
2026-05-14 9:37 ` [PATCH v2 01/10] bpf: make logging prefixes more consistent Marat Khalili
2026-05-14 9:37 ` [PATCH v2 02/10] bpf: introduce extensible load API Marat Khalili
2026-05-14 9:37 ` [PATCH v2 03/10] bpf: support up to 5 arguments Marat Khalili
2026-05-14 9:37 ` [PATCH v2 04/10] bpf: add cBPF origin to rte_bpf_load_ex Marat Khalili
2026-05-14 9:37 ` [PATCH v2 05/10] bpf: support rte_bpf_prm_ex with port callbacks Marat Khalili
2026-05-14 9:37 ` [PATCH v2 06/10] bpf: support loading ELF files from memory Marat Khalili
2026-05-14 9:37 ` [PATCH v2 07/10] test/bpf: test loading cBPF directly Marat Khalili
2026-05-14 9:37 ` [PATCH v2 08/10] test/bpf: test loading ELF file from memory Marat Khalili
2026-05-14 9:37 ` [PATCH v2 09/10] doc: add release notes for new extensible BPF API Marat Khalili
2026-05-14 9:37 ` [PATCH v2 10/10] doc: add load API to BPF programmer's guide Marat Khalili
2026-05-18 8:49 ` [PATCH v3 00/10] bpf: introduce extensible load API Marat Khalili
2026-05-18 8:49 ` [PATCH v3 01/10] bpf: make logging prefixes more consistent Marat Khalili
2026-05-18 8:49 ` [PATCH v3 02/10] bpf: introduce extensible load API Marat Khalili
2026-05-18 17:56 ` Stephen Hemminger
2026-05-18 8:49 ` [PATCH v3 03/10] bpf: support up to 5 arguments Marat Khalili
2026-05-18 8:49 ` [PATCH v3 04/10] bpf: add cBPF origin to rte_bpf_load_ex Marat Khalili
2026-05-18 8:49 ` [PATCH v3 05/10] bpf: support rte_bpf_prm_ex with port callbacks Marat Khalili
2026-05-18 8:49 ` [PATCH v3 06/10] bpf: support loading ELF files from memory Marat Khalili
2026-05-18 8:49 ` [PATCH v3 07/10] test/bpf: test loading cBPF directly Marat Khalili
2026-05-18 8:49 ` [PATCH v3 08/10] test/bpf: test loading ELF file from memory Marat Khalili
2026-05-18 8:49 ` [PATCH v3 09/10] doc: add release notes for new extensible BPF API Marat Khalili
2026-05-18 8:49 ` [PATCH v3 10/10] doc: add load API to BPF programmer's guide Marat Khalili
2026-05-20 12:49 ` [PATCH v4 00/11] bpf: introduce extensible load API Marat Khalili
2026-05-20 12:49 ` [PATCH v4 01/11] bpf: make logging prefixes more consistent Marat Khalili
2026-05-20 12:49 ` [PATCH v4 02/11] bpf: introduce extensible load API Marat Khalili
2026-06-10 14:46 ` Thomas Monjalon
2026-06-12 10:48 ` Marat Khalili [this message]
2026-05-20 12:49 ` [PATCH v4 03/11] bpf: support up to 5 arguments Marat Khalili
2026-05-20 12:49 ` [PATCH v4 04/11] bpf: add cBPF origin to rte_bpf_load_ex Marat Khalili
2026-05-20 12:49 ` [PATCH v4 05/11] bpf: support rte_bpf_prm_ex with port callbacks Marat Khalili
2026-05-20 12:49 ` [PATCH v4 06/11] bpf: support loading ELF files from memory Marat Khalili
2026-05-20 12:49 ` [PATCH v4 07/11] test/bpf: test loading cBPF directly Marat Khalili
2026-05-20 12:49 ` [PATCH v4 08/11] test/bpf: test loading ELF file from memory Marat Khalili
2026-05-20 12:49 ` [PATCH v4 09/11] doc: add release notes for new extensible BPF API Marat Khalili
2026-05-20 12:49 ` [PATCH v4 10/11] doc: add load API to BPF programmer's guide Marat Khalili
2026-05-20 12:49 ` [PATCH v4 11/11] test/bpf: add tests for error handling contracts Marat Khalili
2026-06-12 8:42 ` [PATCH v5 00/11] bpf: introduce extensible load API Marat Khalili
2026-06-12 8:42 ` [PATCH v5 01/11] bpf: make logging prefixes more consistent Marat Khalili
2026-06-12 8:42 ` [PATCH v5 02/11] bpf: introduce extensible load API Marat Khalili
2026-06-12 8:42 ` [PATCH v5 03/11] bpf: support up to 5 arguments Marat Khalili
2026-06-12 8:42 ` [PATCH v5 04/11] bpf: add cBPF origin to rte_bpf_load_ex Marat Khalili
2026-06-12 8:42 ` [PATCH v5 05/11] bpf: support rte_bpf_prm_ex with port callbacks Marat Khalili
2026-06-12 8:42 ` [PATCH v5 06/11] bpf: support loading ELF files from memory Marat Khalili
2026-06-12 8:42 ` [PATCH v5 07/11] test/bpf: test loading cBPF directly Marat Khalili
2026-06-12 8:42 ` [PATCH v5 08/11] test/bpf: test loading ELF file from memory Marat Khalili
2026-06-12 8:42 ` [PATCH v5 09/11] doc: add release notes for new extensible BPF API Marat Khalili
2026-06-12 8:42 ` [PATCH v5 10/11] doc: add load API to BPF programmer's guide Marat Khalili
2026-06-12 8:42 ` [PATCH v5 11/11] test/bpf: add tests for error handling contracts Marat Khalili
2026-06-12 16:06 ` [PATCH v5 00/11] bpf: introduce extensible load API Stephen Hemminger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=0610e3575ac44cf9b62e7f38a4b5c2ab@huawei.com \
--to=marat.khalili@huawei.com \
--cc=dev@dpdk.org \
--cc=konstantin.ananyev@huawei.com \
--cc=thomas@monjalon.net \
--cc=wathsala.vithanage@arm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox