netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [net-next-2.6 PATCH 00/13] virtual function ixgbe driver
@ 2010-01-09 12:22 Jeff Kirsher
  2010-01-09 12:23 ` [net-next-2.6 PATCH 01/13] ixgbevf: Macros, data structures, useful defines and registers Jeff Kirsher
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: Jeff Kirsher @ 2010-01-09 12:22 UTC (permalink / raw)
  To: davem; +Cc: netdev, gospo

The following series implements the ixgbevf driver.  This series of patches
has the following known issues:

- ixgbevf multiple load/unload can cause a panic
- loading ixgbevf before ixgbe does not work
- Tx hangs on VF interfaces - this happens when various resets, mostly due to
  ethtool operations are executed while passing traffic

We are looking for inclusion into net-next-2.6 so that we can get assistance
from the community in testing and further development of this driver.

---

Greg Rose (13):
      ixgbe: Fix ethtool diag test for VT mode operation
      ixgbe: Add SR-IOV features to main module
      ixgbe: Add SR-IOV feature enablement code
      ixgbe: Add SR-IOV specific modules to driver Makefile
      ixgbe: Add SR-IOV specific features
      ixgbe: Add SR-IOV register, structure and bit defines
      ixgbe: Mailbox header and code module
      ixgbevf: Kconfig, Makefile and Documentation
      ixgbevf: Driver Makefile
      ixgbevf: Driver main and ethool interface module and main header
      ixgbevf: Mailbox communication
      ixgbevf: 82599 Virtual Function core functions and header
      ixgbevf: Macros, data structures, useful defines and registers


 Documentation/networking/ixgbevf.txt |   90 +
 drivers/net/Kconfig                  |   22 
 drivers/net/Makefile                 |    1 
 drivers/net/ixgbe/Makefile           |    3 
 drivers/net/ixgbe/ixgbe.h            |   31 
 drivers/net/ixgbe/ixgbe_82599.c      |  126 +
 drivers/net/ixgbe/ixgbe_ethtool.c    |   11 
 drivers/net/ixgbe/ixgbe_main.c       |  280 +++
 drivers/net/ixgbe/ixgbe_mbx.c        |  479 +++++
 drivers/net/ixgbe/ixgbe_mbx.h        |   96 +
 drivers/net/ixgbe/ixgbe_sriov.c      |  336 +++
 drivers/net/ixgbe/ixgbe_sriov.h      |   45 
 drivers/net/ixgbe/ixgbe_type.h       |   53 +
 drivers/net/ixgbevf/Makefile         |   38 
 drivers/net/ixgbevf/defines.h        |  292 +++
 drivers/net/ixgbevf/ethtool.c        |  716 +++++++
 drivers/net/ixgbevf/ixgbevf.h        |  318 +++
 drivers/net/ixgbevf/ixgbevf_main.c   | 3571 ++++++++++++++++++++++++++++++++++
 drivers/net/ixgbevf/mbx.c            |  341 +++
 drivers/net/ixgbevf/mbx.h            |  100 +
 drivers/net/ixgbevf/regs.h           |   85 +
 drivers/net/ixgbevf/vf.c             |  387 ++++
 drivers/net/ixgbevf/vf.h             |  168 ++
 23 files changed, 7517 insertions(+), 72 deletions(-)
 create mode 100755 Documentation/networking/ixgbevf.txt
 create mode 100644 drivers/net/ixgbe/ixgbe_mbx.c
 create mode 100644 drivers/net/ixgbe/ixgbe_mbx.h
 create mode 100644 drivers/net/ixgbe/ixgbe_sriov.c
 create mode 100644 drivers/net/ixgbe/ixgbe_sriov.h
 create mode 100644 drivers/net/ixgbevf/Makefile
 create mode 100644 drivers/net/ixgbevf/defines.h
 create mode 100644 drivers/net/ixgbevf/ethtool.c
 create mode 100644 drivers/net/ixgbevf/ixgbevf.h
 create mode 100644 drivers/net/ixgbevf/ixgbevf_main.c
 create mode 100644 drivers/net/ixgbevf/mbx.c
 create mode 100644 drivers/net/ixgbevf/mbx.h
 create mode 100644 drivers/net/ixgbevf/regs.h
 create mode 100644 drivers/net/ixgbevf/vf.c
 create mode 100644 drivers/net/ixgbevf/vf.h

-- 
Cheers,
Jeff Kirsher

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

end of thread, other threads:[~2010-01-10 21:35 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-09 12:22 [net-next-2.6 PATCH 00/13] virtual function ixgbe driver Jeff Kirsher
2010-01-09 12:23 ` [net-next-2.6 PATCH 01/13] ixgbevf: Macros, data structures, useful defines and registers Jeff Kirsher
2010-01-09 12:23 ` [net-next-2.6 PATCH 02/13] ixgbevf: 82599 Virtual Function core functions and header Jeff Kirsher
2010-01-09 12:23 ` [net-next-2.6 PATCH 03/13] ixgbevf: Mailbox communication Jeff Kirsher
2010-01-09 12:24 ` [net-next-2.6 PATCH 04/13] ixgbevf: Driver main and ethool interface module and main header Jeff Kirsher
2010-01-09 12:24 ` [net-next-2.6 PATCH 05/13] ixgbevf: Driver Makefile Jeff Kirsher
2010-01-09 12:24 ` [net-next-2.6 PATCH 06/13] ixgbevf: Kconfig, Makefile and Documentation Jeff Kirsher
2010-01-09 12:25 ` [net-next-2.6 PATCH 07/13] ixgbe: Mailbox header and code module Jeff Kirsher
2010-01-09 12:25 ` [net-next-2.6 PATCH 08/13] ixgbe: Add SR-IOV register, structure and bit defines Jeff Kirsher
2010-01-09 12:25 ` [net-next-2.6 PATCH 09/13] ixgbe: Add SR-IOV specific features Jeff Kirsher
2010-01-09 12:26 ` [net-next-2.6 PATCH 10/13] ixgbe: Add SR-IOV specific modules to driver Makefile Jeff Kirsher
2010-01-09 12:26 ` [net-next-2.6 PATCH 11/13] ixgbe: Add SR-IOV feature enablement code Jeff Kirsher
2010-01-09 12:26 ` [net-next-2.6 PATCH 12/13] ixgbe: Add SR-IOV features to main module Jeff Kirsher
2010-01-09 12:27 ` [net-next-2.6 PATCH 13/13] ixgbe: Fix ethtool diag test for VT mode operation Jeff Kirsher
2010-01-10 21:35 ` [net-next-2.6 PATCH 00/13] virtual function ixgbe driver David Miller

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).