lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Thu,  4 Sep 2014 01:46:29 -0700
From:	Jeff Kirsher <jeffrey.t.kirsher@...el.com>
To:	davem@...emloft.net
Cc:	Jeff Kirsher <jeffrey.t.kirsher@...el.com>, netdev@...r.kernel.org,
	nhorman@...hat.com, sassmann@...hat.com, jogreene@...hat.com
Subject: [net-next v2 00/15][pull request] Intel Wired LAN Driver Updates 2014-09-04

This series contains updates to i40e, i40evf, ixgbe and ixgbevf.

Catherine adds dual speed module support to i40e.  Updates i40e to allow
the user to change link settings when the link is down.

Serey renames i40e_ndo_set_vf_spoofck() to i40e_ndo_set_vf_spookchk()
to be more consistent with what is defined in netdev and removes a
unnecessary variable assignment.

Jesse makes a malicious driver detection warning only print if extended
driver string is enabled for i40e.  Fixes a panic under traffic load when
resetting or if/whenever there was a Tx-timeout because we were enabling
the Tx queue to early.

Anjali fixes an issue when PF reset fails, where we were trying to restart
the admin queue which has not been setup at that point.  This resolves an
occasional kernel panic when PF reset fails for some reason.

Ethan Zhao replaces the use of a local i40e_vfs_are_assigned() with the
global kernel pci_vfs_assigned() for i40e.

Alex cleans up the FDB handling for ixgbe.  This change makes it so that
the behavior for FDB handling is consistent between both the SR-IOV and
non-SR-IOV cases.  The main change is that we perform bounds checking on
the number of SR-IOV addresses regardless of if SR-IOV is enabled or not
as we can only support a certain number of addresses in the hardware.

Emil extends the pending Tx work check to the VF interfaces, where the
driver initiates a reset of the interface on link loss with pending Tx
work in order to clear the rings.  Introduces a delay for 82599 VFs of
at least 500 usecs to make sure the VFLINKS value is correct, since this
bit tends to flap when a DA or SFP+ cable is disconnected.

Jacob adds code comments in ixgbe to make it more obvious that we are
resetting features based on the fact that we do not have MSI-X enabled,
and cannot use the previous settings.  Also resolves a kernel NULL
pointer dereference by limiting the combined total of MACVLAN and
SR-IOV VFs, since the hardware has a limited number of pools available
(64).  Previously, no checks were in place to limit the number of
accelerated MACVLAN devices based on the number of pools, which would
be ok since there was already a limit for these well below the number of
available pools.  However, SR-IOV uses the very same pools, therefore
we need to ensure that the total number of pools does not exceed the
number of pools available in the hardware.

v2:
 - clean up code comment in patch 5 by replacing "an" with "auto
   negotiation" based on feedback from Sergei Shtylyov
 - removed un-necessary parenthesis around function call in patch 8
   based on feedback from Sergei Shtylyov

The following are changes since commit b89df95d52d5fd0de5a2ca3f8b49aaaee4675151:
  mlx4_en: Convert the normal skb free path to dev_consume_skb_any()
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next master

Alexander Duyck (1):
  ixgbe: Cleanup FDB handling code

Anjali Singhai Jain (1):
  i40e: Fix an issue when PF reset fails

Catherine Sullivan (4):
  i40e: Add dual speed module support
  i40e: Allow user to change link settings if link is down
  i40e: Tell OS link is going down when calling set_phy_config
  i40e/i40evf: Bump i40e/i40evf versions

Emil Tantilov (2):
  ixgbe: reset interface on link loss with pending Tx work from the VF
  ixgbevf: introduce delay for checking VFLINKS on 82599

Ethan Zhao (1):
  i40e: use global pci_vfs_assigned() to replace local
    i40e_vfs_are_assigned()

Jacob Keller (2):
  ixgbe: add comment noting recalculation of queues
  ixgbe: limit combined total of macvlan and SR-IOV VFs

Jesse Brandeburg (2):
  i40e: make warning less verbose
  i40e: fix panic due to too-early Tx queue enable

Serey Kong (2):
  i40e: Change wording to be more consistent
  i40e: Remove unnecessary assignment

 drivers/net/ethernet/intel/i40e/i40e.h             |  1 +
 drivers/net/ethernet/intel/i40e/i40e_common.c      |  2 +
 drivers/net/ethernet/intel/i40e/i40e_ethtool.c     | 55 +++++++------
 drivers/net/ethernet/intel/i40e/i40e_main.c        | 45 +++++-----
 drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c | 36 +-------
 drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.h |  2 +-
 drivers/net/ethernet/intel/i40evf/i40evf_main.c    |  2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_lib.c       |  8 ++
 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c      | 96 ++++++++++++----------
 drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c     | 14 ++--
 drivers/net/ethernet/intel/ixgbe/ixgbe_type.h      |  7 ++
 drivers/net/ethernet/intel/ixgbevf/vf.c            | 15 ++++
 12 files changed, 156 insertions(+), 127 deletions(-)

-- 
1.9.3

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists