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/15][pull request] Intel Wired LAN Driver Updates 2013.02.05
Date: Tue,  5 Feb 2013 02:02:13 -0800	[thread overview]
Message-ID: <1360058548-18158-1-git-send-email-jeffrey.t.kirsher@intel.com> (raw)

This series contains updates to e1000e and ixgbe.  Majority of the patches
are against e1000e, where Bruce makes several cosmetic #define moves into
header files.  In addition, Bruce does a cleanup of braces to resolve
checkpatch warnings (when using the strict option).

Ixgbe patches contain several fixes as well as updating the copyright.  The
fixes from Josh Hay, resolved a possible NULL pointer dereference and
resolved Smatch warnings by fixing return values and memcpy parameters.
Alex provides 2 fixes, the first is to replace rmb() with
read_barrier_depends() in the Tx cleanup.  The second fixes an MTU
warning when using SR-IOV which corrects the fact that we were using 1522
to test for the max frame size in ixgbe_change_mtu and 1518 in
ixgbe_set_vf_lpe.  The difference was the addition of VLAN_HLEN, which we
only need to add in the case of computing a buffer size, but not a filter
size.  Lastly, a patch from Emil which is based on a community patch from
Aurélien Guillaume which adds functions needed for reading SFF-8472
diagnostic data from SFP modules.

The following are changes since commit 27000929ef0f137b34ba219eb04b05e772eff2b1:
  ipcomp: Mark as netns_ok.
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next master

Alexander Duyck (2):
  ixgbe: Replace rmb in Tx cleanup with read_barrier_depends
  ixgbe: Fix SR-IOV MTU warning

Bruce Allan (9):
  e1000e: cosmetic move of #defines and prototypes to the new 82571.h
  e1000e: cosmetic move of #defines to the new 80003es2lan.h
  e1000e: cosmetic move of #defines and prototypes to the new ich8lan.h
  e1000e: cosmetic move of function prototypes to the new mac.h
  e1000e: cosmetic move of #defines and function prototypes to the new
    phy.h
  e1000e: cosmetic move of #defines and function prototypes to the new
    nvm.h
  e1000e: cosmetic move of #defines and prototypes to the new manage.h
  e1000e: convert enums of register offsets and move #defines to regs.h
  e1000e: cleanup checkpatch braces checks

Don Skidmore (1):
  ixgbe: update date to 2013

Emil Tantilov (1):
  ixgbe: allow reading of SFF-8472 data over i2c

Josh Hay (2):
  ixgbe: fix potential null dereference
  ixgbe: fix return values and memcpy parameters to eliminate Smatch
    warnings

 drivers/net/ethernet/intel/e1000e/80003es2lan.c    |  63 ----
 drivers/net/ethernet/intel/e1000e/80003es2lan.h    |  95 ++++++
 drivers/net/ethernet/intel/e1000e/82571.c          |  16 -
 drivers/net/ethernet/intel/e1000e/82571.h          |  58 ++++
 drivers/net/ethernet/intel/e1000e/defines.h        |  38 ---
 drivers/net/ethernet/intel/e1000e/e1000.h          | 207 ------------
 drivers/net/ethernet/intel/e1000e/ethtool.c        |   6 +-
 drivers/net/ethernet/intel/e1000e/hw.h             | 347 +--------------------
 drivers/net/ethernet/intel/e1000e/ich8lan.c        | 127 --------
 drivers/net/ethernet/intel/e1000e/ich8lan.h        | 268 ++++++++++++++++
 drivers/net/ethernet/intel/e1000e/mac.h            |  74 +++++
 drivers/net/ethernet/intel/e1000e/manage.c         |  13 -
 drivers/net/ethernet/intel/e1000e/manage.h         |  72 +++++
 drivers/net/ethernet/intel/e1000e/netdev.c         |  15 -
 drivers/net/ethernet/intel/e1000e/nvm.h            |  47 +++
 drivers/net/ethernet/intel/e1000e/phy.c            |  43 ---
 drivers/net/ethernet/intel/e1000e/phy.h            | 242 ++++++++++++++
 drivers/net/ethernet/intel/e1000e/regs.h           | 252 +++++++++++++++
 drivers/net/ethernet/intel/ixgbe/Makefile          |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe.h           |   4 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_82598.c     |  47 ++-
 drivers/net/ethernet/intel/ixgbe/ixgbe_82599.c     |   3 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_common.c    |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_common.h    |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_dcb.c       |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_dcb.h       |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_dcb_82598.c |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_dcb_82598.h |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_dcb_82599.c |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_dcb_82599.h |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_dcb_nl.c    |   9 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_debugfs.c   |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c   |  11 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_fcoe.c      |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_fcoe.h      |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_lib.c       |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c      |   8 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.c       |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.h       |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_phy.c       |  18 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_phy.h       |  11 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c       |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c     |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.h     |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_sysfs.c     |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_type.h      |   3 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_x540.c      |   3 +-
 47 files changed, 1228 insertions(+), 910 deletions(-)
 create mode 100644 drivers/net/ethernet/intel/e1000e/80003es2lan.h
 create mode 100644 drivers/net/ethernet/intel/e1000e/82571.h
 create mode 100644 drivers/net/ethernet/intel/e1000e/ich8lan.h
 create mode 100644 drivers/net/ethernet/intel/e1000e/mac.h
 create mode 100644 drivers/net/ethernet/intel/e1000e/manage.h
 create mode 100644 drivers/net/ethernet/intel/e1000e/nvm.h
 create mode 100644 drivers/net/ethernet/intel/e1000e/phy.h
 create mode 100644 drivers/net/ethernet/intel/e1000e/regs.h

-- 
1.7.11.7

             reply	other threads:[~2013-02-05 10:02 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-02-05 10:02 Jeff Kirsher [this message]
2013-02-05 10:02 ` [net-next 01/15] e1000e: cosmetic move of #defines and prototypes to the new 82571.h Jeff Kirsher
2013-02-05 10:02 ` [net-next 02/15] e1000e: cosmetic move of #defines to the new 80003es2lan.h Jeff Kirsher
2013-02-05 10:02 ` [net-next 03/15] e1000e: cosmetic move of #defines and prototypes to the new ich8lan.h Jeff Kirsher
2013-02-05 10:02 ` [net-next 04/15] e1000e: cosmetic move of function prototypes to the new mac.h Jeff Kirsher
2013-02-05 10:02 ` [net-next 05/15] e1000e: cosmetic move of #defines and function prototypes to the new phy.h Jeff Kirsher
2013-02-05 10:02 ` [net-next 06/15] e1000e: cosmetic move of #defines and function prototypes to the new nvm.h Jeff Kirsher
2013-02-05 10:02 ` [net-next 07/15] e1000e: cosmetic move of #defines and prototypes to the new manage.h Jeff Kirsher
2013-02-05 10:02 ` [net-next 08/15] e1000e: convert enums of register offsets and move #defines to regs.h Jeff Kirsher
2013-02-05 10:02 ` [net-next 09/15] e1000e: cleanup checkpatch braces checks Jeff Kirsher
2013-02-05 10:02 ` [net-next 10/15] ixgbe: allow reading of SFF-8472 data over i2c Jeff Kirsher
2013-02-05 10:02 ` [net-next 11/15] ixgbe: fix potential null dereference Jeff Kirsher
2013-02-05 10:02 ` [net-next 12/15] ixgbe: fix return values and memcpy parameters to eliminate Smatch warnings Jeff Kirsher
2013-02-05 10:02 ` [net-next 13/15] ixgbe: update date to 2013 Jeff Kirsher
2013-02-05 10:02 ` [net-next 14/15] ixgbe: Replace rmb in Tx cleanup with read_barrier_depends Jeff Kirsher
2013-02-05 10:02 ` [net-next 15/15] ixgbe: Fix SR-IOV MTU warning Jeff Kirsher
2013-02-05 19:56 ` [net-next 00/15][pull request] Intel Wired LAN Driver Updates 2013.02.05 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=1360058548-18158-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).