netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jiri Pirko <jiri@resnulli.us>
To: netdev@vger.kernel.org
Cc: davem@davemloft.net, sfeldma@gmail.com, idosch@mellanox.com,
	eladr@mellanox.com, tgraf@suug.ch, David.Laight@ACULAB.COM,
	john.fastabend@gmail.com, alexei.starovoitov@gmail.com,
	daniel@iogearbox.net, prem@barefootnetworks.com
Subject: [patch net-next 00/13] rocker: do world split
Date: Tue, 16 Feb 2016 13:55:25 +0100	[thread overview]
Message-ID: <1455627338-9872-1-git-send-email-jiri@resnulli.us> (raw)

From: Jiri Pirko <jiri@mellanox.com>

This patchset allows new rocker worlds to be easily added in future.
Two new worlds are now under development: P4 and eBPF.

The main part of the patchset is the OF-DPA carve-out. It resuts in OF-DPA
specific file. Clean cut.

Note this patchset is based on my original attempt in October 2015.
I had to rebase, included all suggestions and did lot of small changes.
Main change to go with all-port-one-world approach. Port world is set according
to what is setup in HW. Not possible to change worlds from driver.

Jiri Pirko (13):
  rocker: remove unused rocker_port param from alloc funcs and shorten
    their names
  rocker: rename rocker.h to rocker_hw.h
  rocker: rename rocker.c to rocker_main.c
  rocker: push tlv processing into separate files
  rocker: implement get settings mode command
  rocker: move rocker and rocker_port structs into header
  rocker: introduce worlds infrastructure
  rocker: pass "learning" value as a parameter to
    rocker_port_set_learning
  rocker: pre-allocate wait structures during cmd ring init
  rocker: remove trans parameter to rocker_cmd_exec function
  rocker: call rocker_cmd_exec function with "nowait" boolean instead of
    flags
  rocker: move OF-DPA stuff into separate file
  rocker: return -EOPNOTSUPP for undefined world ops

 drivers/net/ethernet/rocker/Makefile       |    1 +
 drivers/net/ethernet/rocker/rocker.c       | 5495 ----------------------------
 drivers/net/ethernet/rocker/rocker.h       |  583 +--
 drivers/net/ethernet/rocker/rocker_hw.h    |  467 +++
 drivers/net/ethernet/rocker/rocker_main.c  | 2910 +++++++++++++++
 drivers/net/ethernet/rocker/rocker_ofdpa.c | 2947 +++++++++++++++
 drivers/net/ethernet/rocker/rocker_tlv.c   |   53 +
 drivers/net/ethernet/rocker/rocker_tlv.h   |  201 +
 8 files changed, 6711 insertions(+), 5946 deletions(-)
 delete mode 100644 drivers/net/ethernet/rocker/rocker.c
 create mode 100644 drivers/net/ethernet/rocker/rocker_hw.h
 create mode 100644 drivers/net/ethernet/rocker/rocker_main.c
 create mode 100644 drivers/net/ethernet/rocker/rocker_ofdpa.c
 create mode 100644 drivers/net/ethernet/rocker/rocker_tlv.c
 create mode 100644 drivers/net/ethernet/rocker/rocker_tlv.h

-- 
1.9.3

             reply	other threads:[~2016-02-16 12:55 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-16 12:55 Jiri Pirko [this message]
2016-02-16 12:55 ` [patch net-next 01/13] rocker: remove unused rocker_port param from alloc funcs and shorten their names Jiri Pirko
2016-02-16 12:55 ` [patch net-next 02/13] rocker: rename rocker.h to rocker_hw.h Jiri Pirko
2016-02-16 12:55 ` [patch net-next 03/13] rocker: rename rocker.c to rocker_main.c Jiri Pirko
2016-02-16 12:55 ` [patch net-next 04/13] rocker: push tlv processing into separate files Jiri Pirko
2016-02-16 12:55 ` [patch net-next 05/13] rocker: implement get settings mode command Jiri Pirko
2016-02-16 12:55 ` [patch net-next 06/13] rocker: move rocker and rocker_port structs into header Jiri Pirko
2016-02-16 12:55 ` [patch net-next 07/13] rocker: introduce worlds infrastructure Jiri Pirko
2016-02-16 12:55 ` [patch net-next 08/13] rocker: pass "learning" value as a parameter to rocker_port_set_learning Jiri Pirko
2016-02-16 12:55 ` [patch net-next 09/13] rocker: pre-allocate wait structures during cmd ring init Jiri Pirko
2016-02-16 12:55 ` [patch net-next 10/13] rocker: remove trans parameter to rocker_cmd_exec function Jiri Pirko
2016-02-16 12:55 ` [patch net-next 11/13] rocker: call rocker_cmd_exec function with "nowait" boolean instead of flags Jiri Pirko
2016-02-16 12:55 ` [patch net-next 12/13] rocker: move OF-DPA stuff into separate file Jiri Pirko
2016-02-16 12:55 ` [patch net-next 13/13] rocker: return -EOPNOTSUPP for undefined world ops Jiri Pirko
2016-02-16 14:13 ` [patch net-next 00/13] rocker: do world split Jiri Pirko

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=1455627338-9872-1-git-send-email-jiri@resnulli.us \
    --to=jiri@resnulli.us \
    --cc=David.Laight@ACULAB.COM \
    --cc=alexei.starovoitov@gmail.com \
    --cc=daniel@iogearbox.net \
    --cc=davem@davemloft.net \
    --cc=eladr@mellanox.com \
    --cc=idosch@mellanox.com \
    --cc=john.fastabend@gmail.com \
    --cc=netdev@vger.kernel.org \
    --cc=prem@barefootnetworks.com \
    --cc=sfeldma@gmail.com \
    --cc=tgraf@suug.ch \
    /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;
as well as URLs for NNTP newsgroup(s).