From: Rahul Lakkireddy <rahul.lakkireddy@chelsio.com>
To: Jiri Pirko <jiri@resnulli.us>
Cc: netdev@vger.kernel.org, davem@davemloft.net,
hariprasad@chelsio.com, leedom@chelsio.com,
nirranjan@chelsio.com, indranil@chelsio.com
Subject: Re: [PATCH net-next 0/7] cxgb4: add support for offloading TC u32 filters
Date: Tue, 13 Sep 2016 14:37:59 +0530 [thread overview]
Message-ID: <20160913090758.GA30545@chelsio.com> (raw)
In-Reply-To: <cover.1473667613.git.rahul.lakkireddy@chelsio.com>
On Monday, September 09/12/16, 2016 at 13:42:33 +0530, Rahul Lakkireddy wrote:
> This series of patches add support to offload TC u32 filters onto
> Chelsio NICs.
>
> Patch 1 moves current common filter code to separate files
> in order to provide a common api for performing packet classification
> and filtering in Chelsio NICs.
>
> Patch 2 enables filters for normal NIC configuration and implements
> common api for setting and deleting filters.
>
> Patch 3 provides a debugfs for dumping filter information.
>
> Patches 4-7 add support for TC u32 offload via ndo_setup_tc.
>
> Rahul Lakkireddy (7):
> cxgb4: move common filter code to separate file
> cxgb4: add common api support for configuring filters
> cxgb4: add debugfs support to dump filter debug logs
> cxgb4: add parser to translate u32 filters to internal spec
> cxgb4: add support for setting u32 filters
> cxgb4: add support for deleting u32 filters
> cxgb4: add support for drop and redirect actions
>
> drivers/net/ethernet/chelsio/cxgb4/Makefile | 2 +-
> drivers/net/ethernet/chelsio/cxgb4/cxgb4.h | 30 +
> drivers/net/ethernet/chelsio/cxgb4/cxgb4_debugfs.c | 4 +-
> drivers/net/ethernet/chelsio/cxgb4/cxgb4_filter.c | 1086 ++++++++++++++++++++
> drivers/net/ethernet/chelsio/cxgb4/cxgb4_filter.h | 50 +
> drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c | 338 ++----
> drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_u32.c | 498 +++++++++
> drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_u32.h | 57 +
> .../ethernet/chelsio/cxgb4/cxgb4_tc_u32_parse.h | 294 ++++++
> drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.h | 23 +-
> drivers/net/ethernet/chelsio/cxgb4/t4_values.h | 5 +-
> 11 files changed, 2104 insertions(+), 283 deletions(-)
> create mode 100644 drivers/net/ethernet/chelsio/cxgb4/cxgb4_filter.c
> create mode 100644 drivers/net/ethernet/chelsio/cxgb4/cxgb4_filter.h
> create mode 100644 drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_u32.c
> create mode 100644 drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_u32.h
> create mode 100644 drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_u32_parse.h
>
> --
> 2.5.3
>
Thanks for the review Jiri. Will send a v2 with necessary changes.
Thanks,
Rahul
next prev parent reply other threads:[~2016-09-13 9:09 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-12 8:12 [PATCH net-next 0/7] cxgb4: add support for offloading TC u32 filters Rahul Lakkireddy
2016-09-12 8:12 ` [PATCH net-next 1/7] cxgb4: move common filter code to separate file Rahul Lakkireddy
2016-09-12 8:12 ` [PATCH net-next 2/7] cxgb4: add common api support for configuring filters Rahul Lakkireddy
2016-09-12 8:57 ` Jiri Pirko
2016-09-12 8:12 ` [PATCH net-next 3/7] cxgb4: add debugfs support to dump filter debug logs Rahul Lakkireddy
2016-09-12 8:36 ` Jiri Pirko
2016-09-12 8:12 ` [PATCH net-next 4/7] cxgb4: add parser to translate u32 filters to internal spec Rahul Lakkireddy
2016-09-12 8:12 ` [PATCH net-next 5/7] cxgb4: add support for setting u32 filters Rahul Lakkireddy
2016-09-12 8:40 ` Jiri Pirko
2016-09-12 8:12 ` [PATCH net-next 6/7] cxgb4: add support for deleting " Rahul Lakkireddy
2016-09-12 8:47 ` Jiri Pirko
2016-09-12 8:12 ` [PATCH net-next 7/7] cxgb4: add support for drop and redirect actions Rahul Lakkireddy
2016-09-12 8:52 ` Jiri Pirko
2016-09-12 15:17 ` John Fastabend
2016-09-13 9:07 ` Rahul Lakkireddy [this message]
2016-09-13 16:12 ` [PATCH net-next 0/7] cxgb4: add support for offloading TC u32 filters David Miller
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=20160913090758.GA30545@chelsio.com \
--to=rahul.lakkireddy@chelsio.com \
--cc=davem@davemloft.net \
--cc=hariprasad@chelsio.com \
--cc=indranil@chelsio.com \
--cc=jiri@resnulli.us \
--cc=leedom@chelsio.com \
--cc=netdev@vger.kernel.org \
--cc=nirranjan@chelsio.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.