netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [net-next 0/6] Intel Wired LAN Driver Updates
@ 2014-02-26  1:58 Aaron Brown
  2014-02-26  1:58 ` [net-next 1/6] ixgbe: modify behavior on receiving a HW ECC error Aaron Brown
                   ` (5 more replies)
  0 siblings, 6 replies; 14+ messages in thread
From: Aaron Brown @ 2014-02-26  1:58 UTC (permalink / raw)
  To: davem; +Cc: Aaron Brown, netdev, gospo, sassmann

This series contains updates to ixgbe, igb and documentation.  The
first four have been sent up as part of other series where 1 or more
in the series were rejected and either dropped or still being worked
on for reasons unrelated to these patches.

Don makes recovery from a HW ECC error just schedule a reset as it turns
out the previous behaviour of forcing the user to reload is not necessary.
Mark adds WoL support to port 0 of a new device.  Jacob removes a magic
number from the ptp_caps.name and updates the SubmittingPatches
documentation with details on the Fixed: tag.  And Carolyn updates igb
files to remove the FSF physical mail address.

Don Skidmore (1):
  ixgbe: modify behavior on receiving a HW ECC error.

Mark Rustad (1):
  ixgbe: Add WoL support for a new device

Jeff Kirsher (1):
  igb: make local functions static and remove dead code

Jacob Keller (2):
  ixgbe: don't use magic size number to assign ptp_caps.name
  doc: update SubmittingPatches about the Fixed tag

Carolyn Wyborny (1):
  igb: Update license text to remove FSF address and update copyright.

 Documentation/SubmittingPatches                | 14 ++++-
 drivers/net/ethernet/intel/igb/Makefile        |  5 +-
 drivers/net/ethernet/intel/igb/e1000_82575.c   |  9 ++-
 drivers/net/ethernet/intel/igb/e1000_82575.h   |  7 +--
 drivers/net/ethernet/intel/igb/e1000_defines.h |  5 +-
 drivers/net/ethernet/intel/igb/e1000_hw.h      |  5 +-
 drivers/net/ethernet/intel/igb/e1000_i210.c    | 25 +++++----
 drivers/net/ethernet/intel/igb/e1000_i210.h    | 14 +----
 drivers/net/ethernet/intel/igb/e1000_mac.c     |  5 +-
 drivers/net/ethernet/intel/igb/e1000_mac.h     |  5 +-
 drivers/net/ethernet/intel/igb/e1000_mbx.c     |  5 +-
 drivers/net/ethernet/intel/igb/e1000_mbx.h     |  5 +-
 drivers/net/ethernet/intel/igb/e1000_nvm.c     |  5 +-
 drivers/net/ethernet/intel/igb/e1000_nvm.h     |  5 +-
 drivers/net/ethernet/intel/igb/e1000_phy.c     | 76 +-------------------------
 drivers/net/ethernet/intel/igb/e1000_phy.h     |  6 +-
 drivers/net/ethernet/intel/igb/e1000_regs.h    |  5 +-
 drivers/net/ethernet/intel/igb/igb.h           |  7 +--
 drivers/net/ethernet/intel/igb/igb_ethtool.c   |  5 +-
 drivers/net/ethernet/intel/igb/igb_hwmon.c     |  5 +-
 drivers/net/ethernet/intel/igb/igb_main.c      |  7 +--
 drivers/net/ethernet/intel/igb/igb_ptp.c       | 11 ++--
 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c  | 19 +++++--
 drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c   |  8 ++-
 drivers/net/ethernet/intel/ixgbe/ixgbe_type.h  |  1 +
 25 files changed, 93 insertions(+), 171 deletions(-)

-- 
1.8.5.GIT

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [net-next 0/6] Intel Wired LAN Driver Updates
@ 2014-02-28  4:32 Aaron Brown
  2014-02-28  5:41 ` David Miller
  0 siblings, 1 reply; 14+ messages in thread
From: Aaron Brown @ 2014-02-28  4:32 UTC (permalink / raw)
  To: davem; +Cc: Aaron Brown, netdev, gospo, sassmann

This series contains updates to ixgbe and ixgbevf.

Don provides an update to change a hard coded timeout interval to
a system-wide timeout one, collects AUTOC register functions into
one place and fixes some firmware bit handling.

Emil resolves a tx handling error introduced in a recent commit and
adds check for CHECKSUM_PARTIAL to avoid an skb_is_gso check

Don Skidmore (4):
  ixgbe: fix to use correct timeout interval for memory read completion
  ixgbe: collect all 82599 AUTOC code in one function
  ixgbe: fix bit toggled for 82599 reset fix.
  ixgbe: Add check for FW veto bit

Emil Tantilov (2):
  ixgbevf: fix handling of tx checksumming
  ixgbevf: add check for CHECKSUM_PARTIAL when doing TSO

 drivers/net/ethernet/intel/ixgbe/ixgbe.h          |   1 -
 drivers/net/ethernet/intel/ixgbe/ixgbe_82598.c    |   2 +
 drivers/net/ethernet/intel/ixgbe/ixgbe_82599.c    | 189 ++++++++++++----------
 drivers/net/ethernet/intel/ixgbe/ixgbe_common.c   | 172 +++++++++++++-------
 drivers/net/ethernet/intel/ixgbe/ixgbe_common.h   |   5 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_phy.c      |  44 ++++-
 drivers/net/ethernet/intel/ixgbe/ixgbe_phy.h      |   3 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_type.h     |  21 ++-
 drivers/net/ethernet/intel/ixgbe/ixgbe_x540.c     |   2 +
 drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c |   5 +-
 10 files changed, 294 insertions(+), 150 deletions(-)

-- 
1.8.5.GIT

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [net-next 0/6] Intel Wired LAN Driver Updates
@ 2014-01-16 10:30 Aaron Brown
  2014-01-16 23:35 ` David Miller
  0 siblings, 1 reply; 14+ messages in thread
From: Aaron Brown @ 2014-01-16 10:30 UTC (permalink / raw)
  To: davem; +Cc: Aaron Brown, netdev, gospo, sassmann

This series contains updates to ixgbe and ixgbevf.

John adds rtnl lock / unlock semantics for ixgbe_reinit_locked()
which was being called without the rtnl lock being held.

Jacob corrects an issue where ixgbevf_qv_disable function does not
set the disabled bit correctly.


>From the community, Wei uses a type of struct for pci driver-specific
data in ixgbevf_suspend()

Don changes the way we store ring arrays in a manner that allows 
support of multiple queues on multiple nodes and creates new ring
initialization functions for work previously done across multiple
functions - making the code closer to ixgbe and hopefully more readable.
He also fixes incorrect fiber eeprom write logic. 

John Fastabend (1):
  ixgbe: reinit_locked() should be called with rtnl_lock

Jacob Keller (1):
  ixgbevf: set the disable state when ixgbevf_qv_disable is called

Wei Yongjun (1):
  ixgbevf: use pci drvdata correctly in ixgbevf_suspend()

Don Skidmore (3):
  ixgbevf: Convert ring storage form pointer to an array to array of
    pointers
  ixgbevf: create function for all of ring init
  ixgbe: Fix incorrect logic for fixed fiber eeprom write

 drivers/net/ethernet/intel/ixgbe/ixgbe_82599.c    |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c     |   2 +
 drivers/net/ethernet/intel/ixgbevf/defines.h      |  17 +
 drivers/net/ethernet/intel/ixgbevf/ethtool.c      |  30 +-
 drivers/net/ethernet/intel/ixgbevf/ixgbevf.h      |   5 +-
 drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c | 431 ++++++++++++----------
 6 files changed, 274 insertions(+), 213 deletions(-)

-- 
1.8.5.GIT

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [net-next 0/6] Intel Wired LAN Driver Updates
@ 2014-01-14  8:49 Aaron Brown
  2014-01-15  2:56 ` David Miller
  0 siblings, 1 reply; 14+ messages in thread
From: Aaron Brown @ 2014-01-14  8:49 UTC (permalink / raw)
  To: davem; +Cc: Aaron Brown, netdev, gospo, sassmann

This series contains updates to i40e that are primarily minor fixes or 
general cleanup.

Shannon fixes a bug where the VMDq queue is not associated with the
right setup within the hardware.

Mitch provides a patch adjusting where the VF is reset and another
one adding meaningful context to a message.

Jesse cleans up white space comments and parenthesis.  

Catherine bumps the version.

Mitch Williams (2):
  1/6 i40e: remove extra register write
  3/6 i40e: make message meaningful

Shannon Nelson (1):
  2/6 i40e: associate VMDq queue with VM type

Jesse Brandeburg (2):
  4/6 i40e: whitespace fixes
  5/6 i40e: trivial cleanup

Catherine Sullivan (1):
  6/6 i40e: Bump version number

 drivers/net/ethernet/intel/i40e/Module.symvers     |  0
 drivers/net/ethernet/intel/i40e/i40e.h             |  1 -
 drivers/net/ethernet/intel/i40e/i40e_adminq_cmd.h  |  4 ++--
 drivers/net/ethernet/intel/i40e/i40e_common.c      |  1 -
 drivers/net/ethernet/intel/i40e/i40e_lan_hmc.c     |  3 +--
 drivers/net/ethernet/intel/i40e/i40e_main.c        | 10 ++++++----
 drivers/net/ethernet/intel/i40e/i40e_txrx.c        |  4 ++--
 drivers/net/ethernet/intel/i40e/i40e_type.h        |  1 +
 drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c |  6 +++---
 9 files changed, 15 insertions(+), 15 deletions(-)
 create mode 100644 drivers/net/ethernet/intel/i40e/Module.symvers

-- 
1.8.5.GIT

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

end of thread, other threads:[~2014-02-28  5:41 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-26  1:58 [net-next 0/6] Intel Wired LAN Driver Updates Aaron Brown
2014-02-26  1:58 ` [net-next 1/6] ixgbe: modify behavior on receiving a HW ECC error Aaron Brown
2014-02-26  1:58 ` [net-next 2/6] ixgbe: don't use magic size number to assign ptp_caps.name Aaron Brown
2014-02-26  1:58 ` [net-next 3/6] ixgbe: Add WoL support for a new device Aaron Brown
2014-02-26  1:58 ` [net-next 4/6] igb: make local functions static and remove dead code Aaron Brown
2014-02-26  1:58 ` [net-next 5/6] igb: Update license text to remove FSF address and update copyright Aaron Brown
2014-02-26  1:58 ` [net-next 6/6] doc: update SubmittingPatches about the Fixed tag Aaron Brown
2014-02-26 20:54   ` David Miller
  -- strict thread matches above, loose matches on Subject: below --
2014-02-28  4:32 [net-next 0/6] Intel Wired LAN Driver Updates Aaron Brown
2014-02-28  5:41 ` David Miller
2014-01-16 10:30 Aaron Brown
2014-01-16 23:35 ` David Miller
2014-01-14  8:49 Aaron Brown
2014-01-15  2:56 ` 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).