netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
To: davem@davemloft.net
Cc: Jeff Kirsher <jeffrey.t.kirsher@intel.com>,
	netdev@vger.kernel.org, gospo@redhat.com, sassmann@redhat.com
Subject: [net-next 00/13][pull request] Intel Wired LAN Driver Updates 2014-06-20
Date: Fri, 20 Jun 2014 00:49:35 -0700	[thread overview]
Message-ID: <1403250588-14356-1-git-send-email-jeffrey.t.kirsher@intel.com> (raw)

This series contains updates to i40e and i40evf.

Anjali provides an update to the registers to handle the updates from the
hardware.  Also provides a fix so that we do not try to access the rings
through the qvectors at the time of freeing the qvectors.

Jesse provides a workaround for some older NVM versions where the NVM
was not filling in the GLQF_HKEY register, so made sure that the
critical register is initialized.

Michal provides a fix to reset the head and tail on admin queue
initialization where head and tail are not reset by the hardware.

Neerav adds a helper routine that would wait for the Rx/Tx queue to reach
the enable or disable state that is requested.  Also provides a fix
to the debugfs command "lldp get remote" which was dumping the local
LLDPDU instead of the peer's LLDPDU.  Fixed a bug when all the Tx hang
recovery mechanisms have failed and the driver tries to bring down the
interface in the interrupt context.

Shannon provides a patch to clear the Virtual Ethernet Bridge (VEB) stats
when the PF stats are cleared.  Also cleans the service tasks so that
they do not run while a reset is in progress.

Mitch fixes an issue in i40evf_get_rxfh() where only fifteen registers
were being read instead of all sixteen.

Carolyn provides a change to the RSS configuration to set table size and
write to the hardware to confirm the RSS table size being used.

Kamil makes a change to the admin queue debug prints so that they will not
cause segmentation faults in some of our tool applications.

The following are changes since commit e0f802fbcaa3bffe4728e37a8fa1279b5d554173:
  tcp: move ir_mark initialization to tcp_openreq_init
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next master

Anjali Singhai Jain (2):
  i40e/i40evf: i40e_register.h update
  i40e: Fix dangling ring pointers upon driver removal

Carolyn Wyborny (1):
  i40e/i40evf: Update RSS configuration

Catherine Sullivan (1):
  i40e/i40evf: Bump i40e to 0.4.13 and i40evf to 0.9.35

Jesse Brandeburg (1):
  i40e: workaround NVM GLQF_HKEY

Kamil Krawczyk (1):
  i40e/i40evf: modify debug prints to avoid seg faults

Michal Kosiarz (1):
  i40e/i40evf: Reset Head and Tail on AQ initialization

Mitch Williams (1):
  i40evf: fix off-by-one

Neerav Parikh (3):
  i40e: Helper routine for Rx/Tx queue enable/disable wait
  i40e: debugfs fix to dump remote LLDPDU
  i40e: Fix scheduling while atomic bug during NAPI

Shannon Nelson (2):
  i40e: clear VEB stats when pf stats are cleared
  i40e: keep service tasks out of reset process

 drivers/net/ethernet/intel/i40e/i40e.h             |    3 +
 drivers/net/ethernet/intel/i40e/i40e_adminq.c      |   36 +-
 drivers/net/ethernet/intel/i40e/i40e_common.c      |    7 +-
 drivers/net/ethernet/intel/i40e/i40e_debugfs.c     |    2 +-
 drivers/net/ethernet/intel/i40e/i40e_main.c        |  209 +-
 drivers/net/ethernet/intel/i40e/i40e_register.h    | 5011 ++++++++------------
 drivers/net/ethernet/intel/i40e/i40e_type.h        |    6 +
 drivers/net/ethernet/intel/i40evf/i40e_adminq.c    |   36 +-
 drivers/net/ethernet/intel/i40evf/i40e_register.h  | 5011 ++++++++------------
 drivers/net/ethernet/intel/i40evf/i40e_type.h      |    6 +
 drivers/net/ethernet/intel/i40evf/i40evf_ethtool.c |    4 +-
 drivers/net/ethernet/intel/i40evf/i40evf_main.c    |    2 +-
 12 files changed, 3954 insertions(+), 6379 deletions(-)

-- 
1.9.3

             reply	other threads:[~2014-06-20  7:49 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-20  7:49 Jeff Kirsher [this message]
2014-06-20  7:49 ` [net-next 01/13] i40e/i40evf: i40e_register.h update Jeff Kirsher
2014-06-20  9:07   ` Bjørn Mork
2014-06-20  9:57     ` Jeff Kirsher
2014-06-20  7:49 ` [net-next 02/13] i40e: workaround NVM GLQF_HKEY Jeff Kirsher
2014-06-20  7:49 ` [net-next 03/13] i40e/i40evf: Reset Head and Tail on AQ initialization Jeff Kirsher
2014-06-20  7:49 ` [net-next 04/13] i40e: Fix dangling ring pointers upon driver removal Jeff Kirsher
2014-06-20  7:49 ` [net-next 05/13] i40e: Helper routine for Rx/Tx queue enable/disable wait Jeff Kirsher
2014-06-20  7:49 ` [net-next 06/13] i40e: debugfs fix to dump remote LLDPDU Jeff Kirsher
2014-06-20  7:49 ` [net-next 07/13] i40e: Fix scheduling while atomic bug during NAPI Jeff Kirsher
2014-06-20  7:49 ` [net-next 08/13] i40e: clear VEB stats when pf stats are cleared Jeff Kirsher
2014-06-20  7:49 ` [net-next 09/13] i40e: keep service tasks out of reset process Jeff Kirsher
2014-06-20  7:49 ` [net-next 10/13] i40evf: fix off-by-one Jeff Kirsher
2014-06-20  7:49 ` [net-next 11/13] i40e/i40evf: Update RSS configuration Jeff Kirsher
2014-06-20  7:49 ` [net-next 12/13] i40e/i40evf: modify debug prints to avoid seg faults Jeff Kirsher
2014-06-20  7:49 ` [net-next 13/13] i40e/i40evf: Bump i40e to 0.4.13 and i40evf to 0.9.35 Jeff Kirsher
2014-06-21 22:00 ` [net-next 00/13][pull request] Intel Wired LAN Driver Updates 2014-06-20 David Miller

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=1403250588-14356-1-git-send-email-jeffrey.t.kirsher@intel.com \
    --to=jeffrey.t.kirsher@intel.com \
    --cc=davem@davemloft.net \
    --cc=gospo@redhat.com \
    --cc=netdev@vger.kernel.org \
    --cc=sassmann@redhat.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 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).