Netdev List
 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
Subject: [net-next 00/16][pull request] Intel Wired LAN Driver Update
Date: Tue, 21 Jun 2011 01:33:32 -0700	[thread overview]
Message-ID: <1308645228-32444-1-git-send-email-jeffrey.t.kirsher@intel.com> (raw)

The following series contains update for e1000, igb, ixgbevf and ixgbe.

e1000 and igb: conversion to ndo_fix_features from Michal
ixgbevf: fix function declarations and removal of un-necessary &'s
ixgbe: Mainly cleanup of DCB code and the addition of Dell CEM support.

Dropped the problem patch from Vasu that was previously submitted in the last
patch series.

The following are changes since commit 9f6ec8d697c08963d83880ccd35c13c5ace716ea:
  Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
and are available in the git repository at:
  master.kernel.org:/pub/scm/linux/kernel/git/jkirsher/net-next-2.6 master

Emil Tantilov (1):
  ixgbe: add support for Dell CEM

Greg Rose (1):
  ixgbevf: Fix bungled declaration of ixgbevf_mbx_ops

John Fastabend (10):
  ixgbe: dcbnl reduce duplicated code and indentation
  ixgbe: consolidate packet buffer allocation
  ixgbe: consolidate MRQC and MTQC handling
  ixgbe: configure minimal packet buffers to support TC
  ixgbe: DCB use existing TX and RX queues
  ixgbe: DCB 82598 devices, tx_idx and rx_idx swapped
  ixgbe: setup redirection table for multiple packet buffers
  ixgbe: fix bit mask for DCB version
  ixgbe: DCB and perfect filters can coexist
  ixgbe: DCB, remove unneeded ixgbe_dcb_txq_to_tc() routine

Michał Mirosław (2):
  e1000: convert to ndo_fix_features
  igb: convert to ndo_fix_features

Stephen Hemminger (1):
  ixgbevf: remove unnecessary ampersands

Vasu Dev (1):
  ixgbe: setup per CPU PCI pool for FCoE DDP

 drivers/net/e1000/e1000_ethtool.c   |   69 ------
 drivers/net/e1000/e1000_main.c      |   30 +++-
 drivers/net/igb/igb_ethtool.c       |   67 ------
 drivers/net/igb/igb_main.c          |   33 +++-
 drivers/net/ixgbe/ixgbe.h           |    2 -
 drivers/net/ixgbe/ixgbe_82598.c     |   43 ++++
 drivers/net/ixgbe/ixgbe_82599.c     |   40 +----
 drivers/net/ixgbe/ixgbe_common.c    |  240 +++++++++++++++++++++
 drivers/net/ixgbe/ixgbe_common.h    |    5 +
 drivers/net/ixgbe/ixgbe_dcb.c       |   10 +-
 drivers/net/ixgbe/ixgbe_dcb.h       |    7 -
 drivers/net/ixgbe/ixgbe_dcb_82598.c |   43 +----
 drivers/net/ixgbe/ixgbe_dcb_82598.h |    3 +-
 drivers/net/ixgbe/ixgbe_dcb_82599.c |  119 +-----------
 drivers/net/ixgbe/ixgbe_dcb_82599.h |   14 +--
 drivers/net/ixgbe/ixgbe_dcb_nl.c    |   52 ++---
 drivers/net/ixgbe/ixgbe_fcoe.c      |  105 +++++++---
 drivers/net/ixgbe/ixgbe_fcoe.h      |   13 +-
 drivers/net/ixgbe/ixgbe_main.c      |  397 +++++++++++++++++------------------
 drivers/net/ixgbe/ixgbe_type.h      |   71 +++++++
 drivers/net/ixgbe/ixgbe_x540.c      |    2 +
 drivers/net/ixgbevf/ixgbevf.h       |    2 +-
 drivers/net/ixgbevf/ixgbevf_main.c  |   24 +-
 23 files changed, 734 insertions(+), 657 deletions(-)

-- 
1.7.5.4


             reply	other threads:[~2011-06-21  8:33 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-21  8:33 Jeff Kirsher [this message]
2011-06-21  8:33 ` [net-next 01/16] e1000: convert to ndo_fix_features Jeff Kirsher
2011-06-21  8:33 ` [net-next 02/16] igb: " Jeff Kirsher
2011-06-21  8:33 ` [net-next 03/16] ixgbevf: Fix bungled declaration of ixgbevf_mbx_ops Jeff Kirsher
2011-06-21  8:33 ` [net-next 04/16] ixgbevf: remove unnecessary ampersands Jeff Kirsher
2011-06-21  8:33 ` [net-next 05/16] ixgbe: dcbnl reduce duplicated code and indentation Jeff Kirsher
2011-06-21  8:33 ` [net-next 06/16] ixgbe: consolidate packet buffer allocation Jeff Kirsher
2011-06-21  8:33 ` [net-next 07/16] ixgbe: consolidate MRQC and MTQC handling Jeff Kirsher
2011-06-21  8:33 ` [net-next 08/16] ixgbe: configure minimal packet buffers to support TC Jeff Kirsher
2011-06-21  8:33 ` [net-next 09/16] ixgbe: DCB use existing TX and RX queues Jeff Kirsher
2011-06-21  8:33 ` [net-next 10/16] ixgbe: DCB 82598 devices, tx_idx and rx_idx swapped Jeff Kirsher
2011-06-21  8:33 ` [net-next 11/16] ixgbe: setup redirection table for multiple packet buffers Jeff Kirsher
2011-06-21  8:33 ` [net-next 12/16] ixgbe: fix bit mask for DCB version Jeff Kirsher
2011-06-21  8:33 ` [net-next 13/16] ixgbe: DCB and perfect filters can coexist Jeff Kirsher
2011-06-21  8:33 ` [net-next 14/16] ixgbe: DCB, remove unneeded ixgbe_dcb_txq_to_tc() routine Jeff Kirsher
2011-06-21  8:33 ` [net-next 15/16] ixgbe: add support for Dell CEM Jeff Kirsher
2011-06-21  8:33 ` [net-next 16/16] ixgbe: setup per CPU PCI pool for FCoE DDP Jeff Kirsher
2011-06-21 10:04 ` [net-next 00/16][pull request] Intel Wired LAN Driver Update 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=1308645228-32444-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 \
    /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