All of lore.kernel.org
 help / color / mirror / Atom feed
From: John Daley <johndale@cisco.com>
To: ferruh.yigit@intel.com, john.mcnamara@intel.com
Cc: dev@dpdk.org, John Daley <johndale@cisco.com>
Subject: [PATCH v2 0/7] *** flow API support for enic ***
Date: Thu, 30 Mar 2017 19:06:15 -0700	[thread overview]
Message-ID: <20170331020622.25498-1-johndale@cisco.com> (raw)
In-Reply-To: <20170330212838.31291-1-johndale@cisco.com>

*** flow API support for enic ***

Version 2 fixes some checkpatch fails and adds documentaion.
My checkpatch didn't catch typos and I missed a couple valid errors.
There are still some warnings: 1 for returning non-negative errnos from
a function which I'm OK with this because the caller uses them in the
flow error function where they are supposed to be positive. The other
warning is about double use of macro arguement in ARRAY_SIZE which is OK.

thanks,
john


John Daley (7):
  net/enic: bring NIC interface functions up to date
  net/enic: flow API skeleton
  net/enic: flow API for NICs with advanced filters enabled
  net/enic: flow API for NICs with advanced filters disabled
  net/enic: flow API for Legacy NICs
  net/enic: flow API debug
  net/enic: flow API documentation

 config/common_base                     |    1 +
 doc/guides/nics/enic.rst               |   44 +
 doc/guides/nics/features/enic.ini      |    1 +
 doc/guides/rel_notes/release_17_05.rst |    6 +
 drivers/net/enic/Makefile              |    1 +
 drivers/net/enic/base/cq_enet_desc.h   |   13 +
 drivers/net/enic/base/vnic_dev.c       |  162 +++-
 drivers/net/enic/base/vnic_dev.h       |    5 +-
 drivers/net/enic/base/vnic_devcmd.h    |   81 +-
 drivers/net/enic/enic.h                |   15 +-
 drivers/net/enic/enic_clsf.c           |   16 +-
 drivers/net/enic/enic_ethdev.c         |   21 +-
 drivers/net/enic/enic_flow.c           | 1511 ++++++++++++++++++++++++++++++++
 drivers/net/enic/enic_main.c           |    3 +
 drivers/net/enic/enic_res.c            |   15 +
 drivers/net/enic/enic_rxtx.c           |   16 +-
 16 files changed, 1866 insertions(+), 45 deletions(-)
 create mode 100644 drivers/net/enic/enic_flow.c

-- 
2.12.0

  parent reply	other threads:[~2017-03-31  2:06 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-30 21:28 [PATCH 1/6] net/enic: bring NIC interface functions up to date John Daley
2017-03-30 21:28 ` [PATCH 2/6] net/enic: flow API skeleton John Daley
2017-03-30 21:28 ` [PATCH 3/6] net/enic: flow API for NICs with advanced filters enabled John Daley
2017-03-30 21:28 ` [PATCH 4/6] net/enic: flow API for NICs with advanced filters disabled John Daley
2017-03-30 21:28 ` [PATCH 5/6] net/enic: flow API support for Legacy NICs John Daley
2017-03-30 21:28 ` [PATCH 6/6] net/enic: flow API debug John Daley
2017-03-31  2:06 ` John Daley [this message]
2017-03-31  2:06   ` [PATCH v2 1/7] net/enic: bring NIC interface functions up to date John Daley
2017-03-31  2:06   ` [PATCH v2 2/7] net/enic: flow API skeleton John Daley
2017-03-31  2:06   ` [PATCH v2 3/7] net/enic: flow API for NICs with advanced filters enabled John Daley
2017-03-31  2:06   ` [PATCH v2 4/7] net/enic: flow API for NICs with advanced filters disabled John Daley
2017-03-31  2:06   ` [PATCH v2 5/7] net/enic: flow API for Legacy NICs John Daley
2017-03-31  2:06   ` [PATCH v2 6/7] net/enic: flow API debug John Daley
2017-03-31  2:06   ` [PATCH v2 7/7] net/enic: flow API documentation John Daley
2017-04-02 15:18     ` Mcnamara, John
2017-05-12 12:11     ` Ferruh Yigit
2017-05-17  3:03     ` [PATCH v3 0/6] enic flow api support John Daley
2017-05-17  3:03       ` [PATCH v3 1/6] net/enic: flow API skeleton John Daley
2017-05-17 11:12         ` Ferruh Yigit
2017-05-17  3:03       ` [PATCH v3 2/6] net/enic: flow API for NICs with advanced filters enabled John Daley
2017-05-17 11:12         ` Ferruh Yigit
2017-05-17  3:03       ` [PATCH v3 3/6] net/enic: flow API for NICs with advanced filters disabled John Daley
2017-05-17 11:13         ` Ferruh Yigit
2017-05-17  3:03       ` [PATCH v3 4/6] net/enic: flow API for Legacy NICs John Daley
2017-05-17  3:03       ` [PATCH v3 5/6] net/enic: flow API debug John Daley
2017-05-17  3:03       ` [PATCH v3 6/6] net/enic: flow API documentation John Daley
2017-05-17 11:13         ` Ferruh Yigit
2017-05-17 22:38           ` [PATCH v4 0/8] enic flow api support John Daley
2017-05-17 22:38             ` [PATCH v4 1/8] net/enic: bring NIC interface functions up to date John Daley
2017-05-22  9:49               ` Ferruh Yigit
2017-06-08 10:44               ` Jerin Jacob
2017-05-17 22:38             ` [PATCH v4 2/8] net/enic: flow API skeleton John Daley
2017-05-17 22:38             ` [PATCH v4 3/8] net/enic: flow API for NICs with advanced filters enabled John Daley
2017-05-17 22:38             ` [PATCH v4 4/8] net/enic: flow API mark and flag support John Daley
2017-05-17 22:38             ` [PATCH v4 5/8] net/enic: flow API for NICs with advanced filters disabled John Daley
2017-05-17 22:38             ` [PATCH v4 6/8] net/enic: flow API for Legacy NICs John Daley
2017-05-17 22:38             ` [PATCH v4 7/8] net/enic: flow API debug John Daley
2017-05-17 22:38             ` [PATCH v4 8/8] net/enic: flow API documentation John Daley
2017-05-22 10:05             ` [PATCH v4 0/8] enic flow api support Ferruh Yigit
2017-05-17 11:12       ` [PATCH v3 0/6] " Ferruh Yigit
2017-03-31 10:12 ` [PATCH 1/6] net/enic: bring NIC interface functions up to date Ferruh Yigit

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=20170331020622.25498-1-johndale@cisco.com \
    --to=johndale@cisco.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@intel.com \
    --cc=john.mcnamara@intel.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.