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, bphilips@novell.com
Subject: Re: [net-next-2.6 00/16][pull request] Intel Wired LAN Driver Updates
Date: Fri, 11 Feb 2011 07:55:35 -0800 [thread overview]
Message-ID: <AANLkTimo1itFgO2K76VvKso=SrVjF9FEpO8twmFrq1pZ@mail.gmail.com> (raw)
In-Reply-To: <1297168167-15755-1-git-send-email-jeffrey.t.kirsher@intel.com>
On Tue, Feb 8, 2011 at 04:29, Jeff Kirsher <jeffrey.t.kirsher@intel.com> wrote:
> The following series contains e1000e cleanup patches, the addition of igb
> PF support for i350 devices and several ixgbe cleanup patches.
>
> The following are changes since commit 2360d2e8f01043632d6b651672bec66c49892f94:
> enic: Update MAINTAINERS
>
> and are available in the git repository at:
> master.kernel.org:/pub/scm/linux/kernel/git/jkirsher/net-next-2.6 master
>
> Atita Shirwaikar (1):
> ixgbe: Adding 100MB FULL support in ethtool
>
> Bruce Allan (4):
> e1000e: replace unbounded sprintf with snprintf
> e1000e: use correct pointer when memcpy'ing a 2-dimensional array
> e1000e: do not wakeup Tx queue until ready
> e1000e: return appropriate errors for 'ethtool -r'
>
> Carolyn Wyborny (1):
> igb: Enable PF side of SR-IOV support for i350 devices
>
> Don Skidmore (3):
> ixgbe: fix namespace issue with ixgbe_dcb_txq_to_tc
> ixgbe: cleanup namespace complaint by removing little used function
> ixgbe: cleanup ixgbe_init_mbx_params_pf namespace issue
>
> John Fastabend (7):
> ixgbe: DCB, only reprogram HW if the FCoE priority is changed
> ixgbe: DCB, remove round robin mode on 82598 devices
> ixgbe: DCB, abstract out dcb_config from DCB hardware configuration
> ixgbe: DCB, implement 802.1Qaz routines
> ixgbe: DCB, do not reset on CEE pg changes
> ixgbe: DCB, remove RESET bit it is no longer needed
> ixgbe: dcb, use hardware independent routines
>
> drivers/net/e1000e/ethtool.c | 13 ++-
> drivers/net/e1000e/netdev.c | 13 +-
> drivers/net/igb/e1000_82575.c | 10 ++-
> drivers/net/igb/e1000_mbx.c | 38 +++----
> drivers/net/igb/igb_main.c | 9 +-
> drivers/net/ixgbe/ixgbe.h | 5 +-
> drivers/net/ixgbe/ixgbe_common.h | 4 +-
> drivers/net/ixgbe/ixgbe_dcb.c | 176 +++++++++++++++++++++++++++++-
> drivers/net/ixgbe/ixgbe_dcb.h | 10 ++-
> drivers/net/ixgbe/ixgbe_dcb_82598.c | 94 ++++++++--------
> drivers/net/ixgbe/ixgbe_dcb_82598.h | 23 ++++-
> drivers/net/ixgbe/ixgbe_dcb_82599.c | 115 +++++++++++--------
> drivers/net/ixgbe/ixgbe_dcb_82599.h | 24 ++++-
> drivers/net/ixgbe/ixgbe_dcb_nl.c | 211 ++++++++++++++++++++++++++--------
> drivers/net/ixgbe/ixgbe_ethtool.c | 34 ++++++-
> drivers/net/ixgbe/ixgbe_main.c | 18 +--
> drivers/net/ixgbe/ixgbe_mbx.c | 2 +
> drivers/net/ixgbe/ixgbe_mbx.h | 2 +
> include/linux/dcbnl.h | 5 +
> 19 files changed, 601 insertions(+), 205 deletions(-)
>
> --
I will drop patch 3 (e1000e: do not wakeup Tx queue until ready) while
Bruce takes a second look at the patch. I will be re-posting a pull
request once I have updated my net-next tree without that patch.
--
Cheers,
Jeff
prev parent reply other threads:[~2011-02-11 15:55 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-02-08 12:29 [net-next-2.6 00/16][pull request] Intel Wired LAN Driver Updates Jeff Kirsher
2011-02-08 12:29 ` [net-next-2.6 01/16] e1000e: replace unbounded sprintf with snprintf Jeff Kirsher
2011-02-08 12:29 ` [net-next-2.6 02/16] e1000e: use correct pointer when memcpy'ing a 2-dimensional array Jeff Kirsher
2011-02-08 12:29 ` [net-next-2.6 03/16] e1000e: do not wakeup Tx queue until ready Jeff Kirsher
2011-02-08 20:21 ` David Miller
2011-02-08 20:52 ` Allan, Bruce W
2011-02-08 12:29 ` [net-next-2.6 04/16] e1000e: return appropriate errors for 'ethtool -r' Jeff Kirsher
2011-02-08 12:29 ` [net-next-2.6 05/16] igb: Enable PF side of SR-IOV support for i350 devices Jeff Kirsher
2011-02-08 12:29 ` [net-next-2.6 06/16] ixgbe: DCB, only reprogram HW if the FCoE priority is changed Jeff Kirsher
2011-02-08 12:29 ` [net-next-2.6 07/16] ixgbe: DCB, remove round robin mode on 82598 devices Jeff Kirsher
2011-02-08 12:29 ` [net-next-2.6 08/16] ixgbe: DCB, abstract out dcb_config from DCB hardware configuration Jeff Kirsher
2011-02-08 12:29 ` [net-next-2.6 09/16] ixgbe: DCB, implement 802.1Qaz routines Jeff Kirsher
2011-02-08 12:29 ` [net-next-2.6 10/16] ixgbe: DCB, do not reset on CEE pg changes Jeff Kirsher
2011-02-08 12:29 ` [net-next-2.6 11/16] ixgbe: DCB, remove RESET bit it is no longer needed Jeff Kirsher
2011-02-08 12:29 ` [net-next-2.6 12/16] ixgbe: dcb, use hardware independent routines Jeff Kirsher
2011-02-08 12:29 ` [net-next-2.6 13/16] ixgbe: fix namespace issue with ixgbe_dcb_txq_to_tc Jeff Kirsher
2011-02-08 12:29 ` [net-next-2.6 14/16] ixgbe: cleanup namespace complaint by removing little used function Jeff Kirsher
2011-02-08 12:29 ` [net-next-2.6 15/16] ixgbe: cleanup ixgbe_init_mbx_params_pf namespace issue Jeff Kirsher
2011-02-08 12:29 ` [net-next-2.6 16/16] ixgbe: Adding 100MB FULL support in ethtool Jeff Kirsher
2011-02-11 15:55 ` Jeff Kirsher [this message]
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='AANLkTimo1itFgO2K76VvKso=SrVjF9FEpO8twmFrq1pZ@mail.gmail.com' \
--to=jeffrey.t.kirsher@intel.com \
--cc=bphilips@novell.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;
as well as URLs for NNTP newsgroup(s).