Intel-Wired-Lan Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-wired-lan] [PATCH net-next v3 00/14] i40e/i40evf: AVF series
@ 2017-05-11 18:23 Jesse Brandeburg
  2017-05-11 18:23 ` [Intel-wired-lan] [PATCH net-next v3 01/14] i40evf: drop i40e_type.h include Jesse Brandeburg
                   ` (14 more replies)
  0 siblings, 15 replies; 30+ messages in thread
From: Jesse Brandeburg @ 2017-05-11 18:23 UTC (permalink / raw)
  To: intel-wired-lan

This is the introduction of the Intel(R) Ethernet Adaptive Virtual
Function driver code and device ID, as presented at the NetDEV 1.2
conference in 2016.
http://netdevconf.org/1.2/session.html?anjali-singhai

The idea is to convert the interface between the i40evf driver
and the parent i40e PF driver to be generic, as the i40evf driver
should in the future be able to run on top of other Intel PF
drivers, and negotiate any features beyond a "base expected" set.

The series appears much bigger than it is due to the "move" of
i40evf_virtchnl.h, which is a really a rename.  Please make sure
your git client shows the rename when doing git log --follow.

Series applies on top of the "i40e/i40evf: small fixes" series,
otherwise there will be conflicts when they are merged.

NOTE: There are some minor checkpatch warnings but I've
reviewed them, and they can be ignored.

v3: updated patch 4 to remove some unnecessary transforms to client
    interface files, also had to update patch 9 to remove unused
    I40E_QUEUE_ defines
v2: updated patch 13,14 with Kconfig changes and added to i40evf.txt,
    other patches were unchanged from v1

Jesse Brandeburg (11):
  i40evf: drop i40e_type.h include
  i40e/i40evf: create and use new unified header file
  i40e: use new unified virtchnl header file
  virtchnl: rename i40e to generic virtchnl
  virtchnl: move some code to core driver
  virtchnl: convert to new macros
  i40e/virtchnl: refactor code for validate checks
  i40evf/virtchnl: whitespace cleanups
  virtchnl: finish conversion to virtchnl interface
  i40e/virtchnl: move function to virtchnl
  i40evf: update i40evf.txt with new content

Preethi Banala (1):
  i40evf: Add support for Adaptive Virtual Function

Sridhar Samudrala (2):
  virtchnl: Add pad fields to a couple of structures
  virtchnl: Add compile time static asserts to validate structure sizes

 Documentation/networking/i40evf.txt                |  23 +-
 MAINTAINERS                                        |   1 +
 drivers/net/ethernet/intel/Kconfig                 |  10 +-
 drivers/net/ethernet/intel/i40e/i40e.h             |   2 +-
 drivers/net/ethernet/intel/i40e/i40e_client.c      |   2 +-
 drivers/net/ethernet/intel/i40e/i40e_common.c      |   2 +-
 drivers/net/ethernet/intel/i40e/i40e_prototype.h   |   6 +-
 drivers/net/ethernet/intel/i40e/i40e_virtchnl.h    | 449 -------------
 drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c | 474 +++++---------
 drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.h |   9 +-
 drivers/net/ethernet/intel/i40evf/i40e_common.c    |  15 +-
 drivers/net/ethernet/intel/i40evf/i40e_devids.h    |   1 +
 drivers/net/ethernet/intel/i40evf/i40e_prototype.h |   6 +-
 drivers/net/ethernet/intel/i40evf/i40e_virtchnl.h  | 448 -------------
 drivers/net/ethernet/intel/i40evf/i40evf.h         |  26 +-
 drivers/net/ethernet/intel/i40evf/i40evf_client.c  |  18 +-
 drivers/net/ethernet/intel/i40evf/i40evf_main.c    |  66 +-
 .../net/ethernet/intel/i40evf/i40evf_virtchnl.c    | 285 +++++----
 include/linux/avf/virtchnl.h                       | 701 +++++++++++++++++++++
 19 files changed, 1109 insertions(+), 1435 deletions(-)
 delete mode 100644 drivers/net/ethernet/intel/i40e/i40e_virtchnl.h
 delete mode 100644 drivers/net/ethernet/intel/i40evf/i40e_virtchnl.h
 create mode 100644 include/linux/avf/virtchnl.h

-- 
2.9.3


^ permalink raw reply	[flat|nested] 30+ messages in thread

end of thread, other threads:[~2017-05-12 18:05 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-11 18:23 [Intel-wired-lan] [PATCH net-next v3 00/14] i40e/i40evf: AVF series Jesse Brandeburg
2017-05-11 18:23 ` [Intel-wired-lan] [PATCH net-next v3 01/14] i40evf: drop i40e_type.h include Jesse Brandeburg
2017-05-12 17:55   ` Bowers, AndrewX
2017-05-11 18:23 ` [Intel-wired-lan] [PATCH net-next v3 02/14] i40e/i40evf: create and use new unified header file Jesse Brandeburg
2017-05-12 17:56   ` Bowers, AndrewX
2017-05-11 18:23 ` [Intel-wired-lan] [PATCH net-next v3 03/14] i40e: use new unified virtchnl " Jesse Brandeburg
2017-05-12 17:57   ` Bowers, AndrewX
2017-05-11 18:23 ` [Intel-wired-lan] [PATCH net-next v3 04/14] virtchnl: rename i40e to generic virtchnl Jesse Brandeburg
2017-05-12 18:05   ` Bowers, AndrewX
2017-05-11 18:23 ` [Intel-wired-lan] [PATCH net-next v3 05/14] virtchnl: move some code to core driver Jesse Brandeburg
2017-05-12 17:57   ` Bowers, AndrewX
2017-05-11 18:23 ` [Intel-wired-lan] [PATCH net-next v3 06/14] virtchnl: convert to new macros Jesse Brandeburg
2017-05-12 17:58   ` Bowers, AndrewX
2017-05-11 18:23 ` [Intel-wired-lan] [PATCH net-next v3 07/14] i40e/virtchnl: refactor code for validate checks Jesse Brandeburg
2017-05-12 18:05   ` Bowers, AndrewX
2017-05-11 18:23 ` [Intel-wired-lan] [PATCH net-next v3 08/14] i40evf/virtchnl: whitespace cleanups Jesse Brandeburg
2017-05-12 17:59   ` Bowers, AndrewX
2017-05-11 18:23 ` [Intel-wired-lan] [PATCH net-next v3 09/14] virtchnl: finish conversion to virtchnl interface Jesse Brandeburg
2017-05-12 17:59   ` Bowers, AndrewX
2017-05-11 18:23 ` [Intel-wired-lan] [PATCH net-next v3 10/14] i40e/virtchnl: move function to virtchnl Jesse Brandeburg
2017-05-12 18:00   ` Bowers, AndrewX
2017-05-11 18:23 ` [Intel-wired-lan] [PATCH net-next v3 11/14] virtchnl: Add pad fields to a couple of structures Jesse Brandeburg
2017-05-12 18:00   ` Bowers, AndrewX
2017-05-11 18:23 ` [Intel-wired-lan] [PATCH net-next v3 12/14] virtchnl: Add compile time static asserts to validate structure sizes Jesse Brandeburg
2017-05-12 18:01   ` Bowers, AndrewX
2017-05-11 18:23 ` [Intel-wired-lan] [PATCH net-next v3 13/14] i40evf: Add support for Adaptive Virtual Function Jesse Brandeburg
2017-05-12 18:01   ` Bowers, AndrewX
2017-05-11 18:23 ` [Intel-wired-lan] [PATCH net-next v3 14/14] i40evf: update i40evf.txt with new content Jesse Brandeburg
2017-05-12 18:02   ` Bowers, AndrewX
2017-05-11 18:27 ` [Intel-wired-lan] [PATCH net-next v3 00/14] i40e/i40evf: AVF series Jesse Brandeburg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox