From: patchwork-bot+netdevbpf@kernel.org
To: Larysa Zaremba <larysa.zaremba@intel.com>
Cc: bpf@vger.kernel.org, ast@kernel.org, daniel@iogearbox.net,
andrii@kernel.org, martin.lau@linux.dev, song@kernel.org,
yhs@fb.com, john.fastabend@gmail.com, kpsingh@kernel.org,
sdf@google.com, haoluo@google.com, jolsa@kernel.org,
dsahern@gmail.com, kuba@kernel.org, willemb@google.com,
hawk@kernel.org, anatoly.burakov@intel.com,
alexandr.lobakin@intel.com, magnus.karlsson@gmail.com,
mtahhan@redhat.com, xdp-hints@xdp-project.net,
netdev@vger.kernel.org, willemdebruijn.kernel@gmail.com,
alexei.starovoitov@gmail.com, tariqt@mellanox.com,
saeedm@mellanox.com, maciej.fijalkowski@intel.com
Subject: [xdp-hints] Re: [PATCH bpf-next v8 00/18] XDP metadata via kfuncs for ice + VLAN hint
Date: Thu, 14 Dec 2023 00:30:31 +0000 [thread overview]
Message-ID: <170251383122.31876.14972412954023662585.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20231205210847.28460-1-larysa.zaremba@intel.com>
Hello:
This series was applied to bpf/bpf-next.git (master)
by Alexei Starovoitov <ast@kernel.org>:
On Tue, 5 Dec 2023 22:08:29 +0100 you wrote:
> This series introduces XDP hints via kfuncs [0] to the ice driver.
>
> Series brings the following existing hints to the ice driver:
> - HW timestamp
> - RX hash with type
>
> Series also introduces VLAN tag with protocol XDP hint, it now be accessed by
> XDP and userspace (AF_XDP) programs. They can also be checked with xdp_metadata
> test and xdp_hw_metadata program.
>
> [...]
Here is the summary with links:
- [bpf-next,v8,01/18] ice: make RX hash reading code more reusable
https://git.kernel.org/bpf/bpf-next/c/9244384e811e
- [bpf-next,v8,02/18] ice: make RX HW timestamp reading code more reusable
https://git.kernel.org/bpf/bpf-next/c/3310aad20def
- [bpf-next,v8,03/18] ice: Make ptype internal to descriptor info processing
https://git.kernel.org/bpf/bpf-next/c/6b62a4214903
- [bpf-next,v8,04/18] ice: Introduce ice_xdp_buff
https://git.kernel.org/bpf/bpf-next/c/d951c14ad237
- [bpf-next,v8,05/18] ice: Support HW timestamp hint
https://git.kernel.org/bpf/bpf-next/c/9031d5f491b9
- [bpf-next,v8,06/18] ice: Support RX hash XDP hint
https://git.kernel.org/bpf/bpf-next/c/0e6a7b095970
- [bpf-next,v8,07/18] xsk: add functions to fill control buffer
https://git.kernel.org/bpf/bpf-next/c/b4e352ff1169
- [bpf-next,v8,08/18] ice: Support XDP hints in AF_XDP ZC mode
https://git.kernel.org/bpf/bpf-next/c/d68d707dcbbf
- [bpf-next,v8,09/18] xdp: Add VLAN tag hint
https://git.kernel.org/bpf/bpf-next/c/e6795330f88b
- [bpf-next,v8,10/18] ice: Implement VLAN tag hint
https://git.kernel.org/bpf/bpf-next/c/714ed949c6f3
- [bpf-next,v8,11/18] ice: use VLAN proto from ring packet context in skb path
https://git.kernel.org/bpf/bpf-next/c/b591137c4ec3
- [bpf-next,v8,12/18] veth: Implement VLAN tag XDP hint
https://git.kernel.org/bpf/bpf-next/c/fca783799f64
- [bpf-next,v8,13/18] net: make vlan_get_tag() return -ENODATA instead of -EINVAL
https://git.kernel.org/bpf/bpf-next/c/537fec0733c4
- [bpf-next,v8,14/18] mlx5: implement VLAN tag XDP hint
https://git.kernel.org/bpf/bpf-next/c/7978bad4b6b9
- [bpf-next,v8,15/18] selftests/bpf: Allow VLAN packets in xdp_hw_metadata
https://git.kernel.org/bpf/bpf-next/c/e71a9fa7fdb2
- [bpf-next,v8,16/18] selftests/bpf: Add flags and VLAN hint to xdp_hw_metadata
https://git.kernel.org/bpf/bpf-next/c/8e68a4beba94
- [bpf-next,v8,17/18] selftests/bpf: Add AF_INET packet generation to xdp_metadata
https://git.kernel.org/bpf/bpf-next/c/a3850af4ea25
- [bpf-next,v8,18/18] selftests/bpf: Check VLAN tag and proto in xdp_metadata
https://git.kernel.org/bpf/bpf-next/c/4c6612f6100c
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
prev parent reply other threads:[~2023-12-14 0:30 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-05 21:08 [xdp-hints] " Larysa Zaremba
2023-12-05 21:08 ` [xdp-hints] [PATCH bpf-next v8 01/18] ice: make RX hash reading code more reusable Larysa Zaremba
2023-12-05 21:08 ` [xdp-hints] [PATCH bpf-next v8 02/18] ice: make RX HW timestamp " Larysa Zaremba
2023-12-05 21:08 ` [xdp-hints] [PATCH bpf-next v8 03/18] ice: Make ptype internal to descriptor info processing Larysa Zaremba
2023-12-05 21:08 ` [xdp-hints] [PATCH bpf-next v8 04/18] ice: Introduce ice_xdp_buff Larysa Zaremba
2023-12-12 13:07 ` [xdp-hints] " Maciej Fijalkowski
2023-12-05 21:08 ` [xdp-hints] [PATCH bpf-next v8 05/18] ice: Support HW timestamp hint Larysa Zaremba
2023-12-05 21:08 ` [xdp-hints] [PATCH bpf-next v8 06/18] ice: Support RX hash XDP hint Larysa Zaremba
2023-12-05 21:08 ` [xdp-hints] [PATCH bpf-next v8 07/18] xsk: add functions to fill control buffer Larysa Zaremba
2023-12-12 13:51 ` [xdp-hints] " Magnus Karlsson
2023-12-05 21:08 ` [xdp-hints] [PATCH bpf-next v8 08/18] ice: Support XDP hints in AF_XDP ZC mode Larysa Zaremba
2023-12-12 13:20 ` [xdp-hints] " Maciej Fijalkowski
2023-12-05 21:08 ` [xdp-hints] [PATCH bpf-next v8 09/18] xdp: Add VLAN tag hint Larysa Zaremba
2023-12-06 8:25 ` [xdp-hints] " Jesper Dangaard Brouer
2023-12-05 21:08 ` [xdp-hints] [PATCH bpf-next v8 10/18] ice: Implement " Larysa Zaremba
2023-12-05 21:08 ` [xdp-hints] [PATCH bpf-next v8 11/18] ice: use VLAN proto from ring packet context in skb path Larysa Zaremba
2023-12-12 13:26 ` [xdp-hints] " Maciej Fijalkowski
2023-12-05 21:08 ` [xdp-hints] [PATCH bpf-next v8 12/18] veth: Implement VLAN tag XDP hint Larysa Zaremba
2023-12-05 21:08 ` [xdp-hints] [PATCH bpf-next v8 13/18] net: make vlan_get_tag() return -ENODATA instead of -EINVAL Larysa Zaremba
2023-12-05 21:08 ` [xdp-hints] [PATCH bpf-next v8 14/18] mlx5: implement VLAN tag XDP hint Larysa Zaremba
2023-12-06 8:52 ` [xdp-hints] " Jesper Dangaard Brouer
2023-12-05 21:08 ` [xdp-hints] [PATCH bpf-next v8 15/18] selftests/bpf: Allow VLAN packets in xdp_hw_metadata Larysa Zaremba
2023-12-05 21:08 ` [xdp-hints] [PATCH bpf-next v8 16/18] selftests/bpf: Add flags and VLAN hint to xdp_hw_metadata Larysa Zaremba
2023-12-05 21:08 ` [xdp-hints] [PATCH bpf-next v8 17/18] selftests/bpf: Add AF_INET packet generation to xdp_metadata Larysa Zaremba
2023-12-05 22:59 ` [xdp-hints] " Stanislav Fomichev
2023-12-05 21:08 ` [xdp-hints] [PATCH bpf-next v8 18/18] selftests/bpf: Check VLAN tag and proto in xdp_metadata Larysa Zaremba
2023-12-14 0:30 ` patchwork-bot+netdevbpf [this message]
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
List information: https://lists.xdp-project.net/postorius/lists/xdp-hints.xdp-project.net/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=170251383122.31876.14972412954023662585.git-patchwork-notify@kernel.org \
--to=patchwork-bot+netdevbpf@kernel.org \
--cc=alexandr.lobakin@intel.com \
--cc=alexei.starovoitov@gmail.com \
--cc=anatoly.burakov@intel.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=dsahern@gmail.com \
--cc=haoluo@google.com \
--cc=hawk@kernel.org \
--cc=john.fastabend@gmail.com \
--cc=jolsa@kernel.org \
--cc=kpsingh@kernel.org \
--cc=kuba@kernel.org \
--cc=larysa.zaremba@intel.com \
--cc=maciej.fijalkowski@intel.com \
--cc=magnus.karlsson@gmail.com \
--cc=martin.lau@linux.dev \
--cc=mtahhan@redhat.com \
--cc=netdev@vger.kernel.org \
--cc=saeedm@mellanox.com \
--cc=sdf@google.com \
--cc=song@kernel.org \
--cc=tariqt@mellanox.com \
--cc=willemb@google.com \
--cc=willemdebruijn.kernel@gmail.com \
--cc=xdp-hints@xdp-project.net \
--cc=yhs@fb.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