From: patchwork-bot+netdevbpf@kernel.org
To: Naveen Mamindlapalli <naveenm@marvell.com>
Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
kuba@kernel.org, davem@davemloft.net, saeed@kernel.org,
alexander.duyck@gmail.com, sgoutham@marvell.com,
lcherian@marvell.com, gakula@marvell.com, jerinj@marvell.com,
sbhatta@marvell.com, hkelam@marvell.com
Subject: Re: [PATCH v4 net-next 00/13] Add ethtool ntuple filters support
Date: Tue, 17 Nov 2020 22:00:08 +0000 [thread overview]
Message-ID: <160565040832.10116.551528627224189010.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20201114195303.25967-1-naveenm@marvell.com>
Hello:
This series was applied to netdev/net-next.git (refs/heads/master):
On Sun, 15 Nov 2020 01:22:50 +0530 you wrote:
> This patch series adds support for ethtool ntuple filters, unicast
> address filtering, VLAN offload and SR-IOV ndo handlers. All of the
> above features are based on the Admin Function(AF) driver support to
> install and delete the low level MCAM entries. Each MCAM entry is
> programmed with the packet fields to match and what actions to take
> if the match succeeds. The PF driver requests AF driver to allocate
> set of MCAM entries to be used to install the flows by that PF. The
> entries will be freed when the PF driver is unloaded.
>
> [...]
Here is the summary with links:
- [v4,net-next,01/13] octeontx2-af: Modify default KEX profile to extract TX packet fields
https://git.kernel.org/netdev/net-next/c/f1517f6f1d6f
- [v4,net-next,02/13] octeontx2-af: Verify MCAM entry channel and PF_FUNC
https://git.kernel.org/netdev/net-next/c/041a1c171581
- [v4,net-next,03/13] octeontx2-af: Generate key field bit mask from KEX profile
https://git.kernel.org/netdev/net-next/c/9b179a960a96
- [v4,net-next,04/13] octeontx2-af: Add mbox messages to install and delete MCAM rules
https://git.kernel.org/netdev/net-next/c/55307fcb9258
- [v4,net-next,05/13] octeontx2-pf: Add support for ethtool ntuple filters
https://git.kernel.org/netdev/net-next/c/f0a1913f8a6f
- [v4,net-next,06/13] octeontx2-pf: Add support for unicast MAC address filtering
https://git.kernel.org/netdev/net-next/c/63ee51575f6c
- [v4,net-next,07/13] octeontx2-af: Add debugfs entry to dump the MCAM rules
https://git.kernel.org/netdev/net-next/c/4d6beb9c8032
- [v4,net-next,08/13] octeontx2-af: Modify nix_vtag_cfg mailbox to support TX VTAG entries
https://git.kernel.org/netdev/net-next/c/9a946def264d
- [v4,net-next,09/13] octeontx2-pf: Implement ingress/egress VLAN offload
https://git.kernel.org/netdev/net-next/c/fd9d7859db6c
- [v4,net-next,10/13] octeontx2-pf: Add support for SR-IOV management functions
https://git.kernel.org/netdev/net-next/c/f0c2982aaf98
- [v4,net-next,11/13] octeontx2-af: Handle PF-VF mac address changes
https://git.kernel.org/netdev/net-next/c/4f88ed2cc5af
- [v4,net-next,12/13] octeontx2-af: Add new mbox messages to retrieve MCAM entries
https://git.kernel.org/netdev/net-next/c/dbab48cecc94
- [v4,net-next,13/13] octeontx2-af: Delete NIX_RXVLAN_ALLOC mailbox message
https://git.kernel.org/netdev/net-next/c/5a579667850a
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:[~2020-11-17 22:00 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-14 19:52 [PATCH v4 net-next 00/13] Add ethtool ntuple filters support Naveen Mamindlapalli
2020-11-14 19:52 ` [PATCH v4 net-next 01/13] octeontx2-af: Modify default KEX profile to extract TX packet fields Naveen Mamindlapalli
2020-11-14 19:52 ` [PATCH v4 net-next 02/13] octeontx2-af: Verify MCAM entry channel and PF_FUNC Naveen Mamindlapalli
2020-11-14 19:52 ` [PATCH v4 net-next 03/13] octeontx2-af: Generate key field bit mask from KEX profile Naveen Mamindlapalli
2020-11-14 19:52 ` [PATCH v4 net-next 04/13] octeontx2-af: Add mbox messages to install and delete MCAM rules Naveen Mamindlapalli
2020-11-14 19:52 ` [PATCH v4 net-next 05/13] octeontx2-pf: Add support for ethtool ntuple filters Naveen Mamindlapalli
2020-11-14 19:52 ` [PATCH v4 net-next 06/13] octeontx2-pf: Add support for unicast MAC address filtering Naveen Mamindlapalli
2020-11-14 19:52 ` [PATCH v4 net-next 07/13] octeontx2-af: Add debugfs entry to dump the MCAM rules Naveen Mamindlapalli
2020-11-14 19:52 ` [PATCH v4 net-next 08/13] octeontx2-af: Modify nix_vtag_cfg mailbox to support TX VTAG entries Naveen Mamindlapalli
2020-11-14 19:52 ` [PATCH v4 net-next 09/13] octeontx2-pf: Implement ingress/egress VLAN offload Naveen Mamindlapalli
2020-11-14 19:53 ` [PATCH v4 net-next 10/13] octeontx2-pf: Add support for SR-IOV management functions Naveen Mamindlapalli
2020-11-14 19:53 ` [PATCH v4 net-next 11/13] octeontx2-af: Handle PF-VF mac address changes Naveen Mamindlapalli
2020-11-14 19:53 ` [PATCH v4 net-next 12/13] octeontx2-af: Add new mbox messages to retrieve MCAM entries Naveen Mamindlapalli
2020-11-14 19:53 ` [PATCH v4 net-next 13/13] octeontx2-af: Delete NIX_RXVLAN_ALLOC mailbox message Naveen Mamindlapalli
2020-11-15 2:10 ` [PATCH v4 net-next 00/13] Add ethtool ntuple filters support Alexander Duyck
2020-11-17 22:00 ` 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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=160565040832.10116.551528627224189010.git-patchwork-notify@kernel.org \
--to=patchwork-bot+netdevbpf@kernel.org \
--cc=alexander.duyck@gmail.com \
--cc=davem@davemloft.net \
--cc=gakula@marvell.com \
--cc=hkelam@marvell.com \
--cc=jerinj@marvell.com \
--cc=kuba@kernel.org \
--cc=lcherian@marvell.com \
--cc=linux-kernel@vger.kernel.org \
--cc=naveenm@marvell.com \
--cc=netdev@vger.kernel.org \
--cc=saeed@kernel.org \
--cc=sbhatta@marvell.com \
--cc=sgoutham@marvell.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