From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeff Kirsher Subject: [net-next-2.6 00/26 v2][pull request] Intel Wired LAN Driver Update Date: Wed, 13 Apr 2011 19:38:38 -0700 Message-ID: <1302748718-16927-1-git-send-email-jeffrey.t.kirsher@intel.com> Cc: Jeff Kirsher , netdev@vger.kernel.org, gospo@redhat.com, bphilips@novell.com To: davem@davemloft.net Return-path: Received: from mga01.intel.com ([192.55.52.88]:13860 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758440Ab1DNCiu (ORCPT ); Wed, 13 Apr 2011 22:38:50 -0400 Sender: netdev-owner@vger.kernel.org List-ID: The following series contains updates to e1000e, igb and ixgbe. - e1000e has two conversion, one to use usleep_range and the other to the new VLAN model. There is also a fix for a debug statement as well as a fix for ASPM. - igb has a documentation update, comment fix, and the introduction of thermal sensor checking. - ixgbe contains the majority of the changes, with several cleanups and fixes. As well as a conversion to use usleep_range(). -v2 Drop the e1000 patch to convert to the new set_phys_id interface The following are changes since commit c326de88b8ac7ed1cd1027017ba6079dbe91be49: net: allow shifted access in smsc911x V2 and are available in the git repository at: master.kernel.org:/pub/scm/linux/kernel/git/jkirsher/net-next-2.6 master Bruce Allan (3): e1000e: convert short duration msleep() to usleep_range() e1000e: PCIe link speed in GT/s, not GB/s e1000e: If ASPM L0s needs to be disabled, do it prior to enabling device Don Skidmore (1): ixgbe: cleanup short msleep's (<20ms) to use usleep_range Emil Tantilov (10): ixgbe: fix return value checks ixgbe: correct function number for some 82598 parts ixgbe: fix namespacecheck issue ixgbe: refactor common start_hw code for 82599 and x540 ixgbe: move disabling of relaxed ordering in start_hw() ixgbe: fix 82599 KR downshift coexistence with LESM FW module ixgbe: fix semaphores in eeprom routines for x540 ixgbe: add support for new HW ixgbe: explicitly disable 100H for x540 ixgbe: make device_caps() generic Flavio Leitner (1): e1000e: fix stats locking in e1000_watchdog_task Greg Rose (1): igb: Add anti-spoofing feature documentation Jeff Kirsher (2): e1000e: convert to new VLAN model ixgbe: update version string for Dell CEM use John Fastabend (3): ixgbe: DCB, further cleanups to app configuration ixgbe: DCB, misallocated packet buffer size with X540 device ixgbe: DCB, X540 devices do not respond to pause frames Stefan Assmann (2): igb: fix typo in igb_validate_nvm_checksum_82580 igb: introduce igb_thermal_sensor_event for sensor checking Documentation/networking/igb.txt | 13 ++ drivers/net/e1000e/82571.c | 20 ++-- drivers/net/e1000e/e1000.h | 6 +- drivers/net/e1000e/es2lan.c | 4 +- drivers/net/e1000e/ethtool.c | 46 ++++++-- drivers/net/e1000e/ich8lan.c | 12 +- drivers/net/e1000e/lib.c | 10 +- drivers/net/e1000e/netdev.c | 211 ++++++++++++++++++++--------------- drivers/net/e1000e/phy.c | 4 +- drivers/net/igb/e1000_82575.c | 3 +- drivers/net/igb/igb_main.c | 67 ++++++------ drivers/net/ixgbe/ixgbe_82598.c | 60 ++++++++++- drivers/net/ixgbe/ixgbe_82599.c | 104 ++++++++++++------ drivers/net/ixgbe/ixgbe_common.c | 112 ++++++++++++++++++- drivers/net/ixgbe/ixgbe_common.h | 4 +- drivers/net/ixgbe/ixgbe_dcb_82599.c | 77 ++++++++----- drivers/net/ixgbe/ixgbe_dcb_82599.h | 2 + drivers/net/ixgbe/ixgbe_dcb_nl.c | 109 ++++-------------- drivers/net/ixgbe/ixgbe_ethtool.c | 14 +- drivers/net/ixgbe/ixgbe_main.c | 22 ++-- drivers/net/ixgbe/ixgbe_phy.c | 7 +- drivers/net/ixgbe/ixgbe_type.h | 12 ++ drivers/net/ixgbe/ixgbe_x540.c | 192 +++++++++++++++++++++++--------- 23 files changed, 718 insertions(+), 393 deletions(-) -- 1.7.4.2