debian/arch/i386/config.486-vyatta |    3 
 drivers/net/Kconfig                |   22 
 drivers/net/Makefile               |    1 
 drivers/net/e1000/e1000_ethtool.c  |    2 
 drivers/net/igb/Makefile           |   37 
 drivers/net/igb/e1000_82575.c      | 1269 +++++++++++
 drivers/net/igb/e1000_82575.h      |  150 +
 drivers/net/igb/e1000_defines.h    |  772 ++++++
 drivers/net/igb/e1000_hw.h         |  599 +++++
 drivers/net/igb/e1000_mac.c        | 1505 +++++++++++++
 drivers/net/igb/e1000_mac.h        |   98 
 drivers/net/igb/e1000_nvm.c        |  605 +++++
 drivers/net/igb/e1000_nvm.h        |   40 
 drivers/net/igb/e1000_phy.c        | 1807 ++++++++++++++++
 drivers/net/igb/e1000_phy.h        |   98 
 drivers/net/igb/e1000_regs.h       |  270 ++
 drivers/net/igb/igb.h              |  300 ++
 drivers/net/igb/igb_ethtool.c      | 1927 +++++++++++++++++
 drivers/net/igb/igb_main.c         | 4122 +++++++++++++++++++++++++++++++++++++
 drivers/net/ixgb/ixgb_ethtool.c    |    2 
 20 files changed, 13626 insertions(+), 3 deletions(-)

New commits:
commit 2b81ad2f3eb641d97b111526cf2fbb5f5007af80
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date:   Tue Apr 22 08:54:50 2008 -0700

    Enable new Intel Gigabit driver
    
    This enables the backport (cherry pick) of the driver for Intel
    highspeed gigabit ethernet board.

commit d3fbc307e840aa6c2a3aa2282421530a9ad8f7c6
Author: Auke Kok <[EMAIL PROTECTED]>
Date:   Fri Feb 1 08:21:49 2008 -0800

    igb: remove unneeded declaration shadowing earlier one
    
    This removes a sparse warning.
    
    Signed-off-by: Auke Kok <[EMAIL PROTECTED]>
    Signed-off-by: Jeff Garzik <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>

commit f8466f59c58d417a28d64493f53fb4af33491882
Author: Al Viro <[EMAIL PROTECTED]>
Date:   Sun Mar 16 22:43:06 2008 +0000

    igb: endianness fix
    
    le16_to_cpu() should be done before mask and shift...
    
    Signed-off-by: Al Viro <[EMAIL PROTECTED]>
    Signed-off-by: Jeff Garzik <[EMAIL PROTECTED]>

commit 0985de902c2a8806c1911281ad335d50d28c338a
Author: Mitch Williams <[EMAIL PROTECTED]>
Date:   Fri Mar 7 10:32:13 2008 -0800

    igb: Correctly get protocol information
    
    We can't look at the socket to get protocol information. We should
    instead look directly at the packet, and hope there are no IPv6
    option headers.
    
    Signed-off-by: Mitch Williams <[EMAIL PROTECTED]>
    Signed-off-by: Auke Kok <[EMAIL PROTECTED]>
    Signed-off-by: Jeff Garzik <[EMAIL PROTECTED]>

commit 37cea48df44bd624d4a7671159bc754007947dc0
Author: Bill Hayes <[EMAIL PROTECTED]>
Date:   Tue Feb 19 10:24:41 2008 -0800

    igb: Fix panic with NICs with 1000BASE-SX PHY
    
    This patch eliminates a kernel panic with the igb driver in 2.6.25-rc2 when
    running on a Intel 82575 Ethernet controller with a 1000BASE-SX PHY.  The
    panic does not happen with the 1000BASE-T PHY, only with a SX connection.
    
    Signed-off-by: Bill Hayes <[EMAIL PROTECTED]>
    Signed-off-by: Andy Gospodarek <[EMAIL PROTECTED]>
    Signed-off-by: Auke Kok <[EMAIL PROTECTED]>
    Signed-off-by: Jeff Garzik <[EMAIL PROTECTED]>

commit ebaadbbb184cae817e3136e17872509ae0050559
Author: Andy Gospodarek <[EMAIL PROTECTED]>
Date:   Fri Feb 15 14:05:25 2008 -0800

    igb: fix legacy mode irq issue
    
    I booted an igb kernel with the option pci=nomsi and instantly noticed
    that interrupts no longer worked on my igb device.  I took a look at the
    interrupt initialization and quickly discovered a comment stating:
    
    "DO NOT USE EIAME or IAME in legacy mode"
    
    It seemed a bit odd that bits to enable IAM were being set in legacy
    interrupt mode, so I dropped out the following parts and interrupts
    began working fine again.
    
    [Updated code flow and a nitpick spelling error --Auke]
    
    Signed-off-by: Andy Gospodarek <[EMAIL PROTECTED]>
    Signed-off-by: Auke Kok <[EMAIL PROTECTED]>
    Signed-off-by: Jeff Garzik <[EMAIL PROTECTED]>

commit b3a58e6e33bbd794a7696b8b798cbf22b92a26e8
Author: David Graham <[EMAIL PROTECTED]>
Date:   Thu Feb 14 10:17:12 2008 -0800

    igb: PCIe devices do not need to unset MANC_ARP_ENA
    
    Users reported that ARP's were lost with igb. The problem
    is fixed by not enabling this manageability configuration
    bit.
    
    None of the release_manageability code is actually needed as the
    normal device reset during a shutdown returns everthing to
    the right condition automatically.
    
    Signed-off-by: David Graham <[EMAIL PROTECTED]>
    Signed-off-by: Auke Kok <[EMAIL PROTECTED]>
    Signed-off-by: Jeff Garzik <[EMAIL PROTECTED]>

commit d3db0c3244a0c235eccf9412762b116669bb7845
Author: Julia Lawall <[EMAIL PROTECTED]>
Date:   Mon Feb 11 09:25:40 2008 -0800

    replace code with FIELD_SIZEOF
    
    Signed-off-by: Julia Lawall <[EMAIL PROTECTED]>
    Signed-off-by: Auke Kok <[EMAIL PROTECTED]>
    Signed-off-by: Jeff Garzik <[EMAIL PROTECTED]>

commit 3a87f75cf3bf7a03f6d43d02ed0ad55132d2acf4
Author: Al Viro <[EMAIL PROTECTED]>
Date:   Sun Mar 16 22:23:24 2008 +0000

    igb trivial annotations
    
    Signed-off-by: Al Viro <[EMAIL PROTECTED]>
    Signed-off-by: Jeff Garzik <[EMAIL PROTECTED]>

commit d997c2be2aa7d3f24e3b0982cea64c080e808ad2
Author: Auke Kok <[EMAIL PROTECTED]>
Date:   Thu Jan 24 02:22:38 2008 -0800

    igb: PCI-Express 82575 Gigabit Ethernet driver
    
    We are pleased to announce a new Gigabit Ethernet product and its
    driver to the linux community. This product is the Intel(R) 82575
    Gigabit Ethernet adapter family. Physical adapters will be available
    to the public soon. These adapters come in 2- and 4-port versions
    (copper PHY) currently. Other variants will be available later.
    
    The 82575 chipset supports significantly different features that
    warrant a new driver. The descriptor format is (just like the
    ixgbe driver) different. The device can use multiple MSI-X vectors
    and multiple queues for both send and receive. This allows us to
    optimize some of the driver code specifically as well compared to
    the e1000-supported devices.
    
    This version of the igb driver no lnger uses fake netdevices and
    incorporates napi_struct members for each ring to do the multi-
    queue polling. multi-queue is enabled by default and the driver
    supports NAPI mode only.
    
    All the namespace collisions should be gone in this version too. The
    register macro's have been condensed to improve readability.
    
    Signed-off-by: Auke Kok <[EMAIL PROTECTED]>
    Signed-off-by: Jeff Garzik <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>

http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=2b81ad2f3eb641d97b111526cf2fbb5f5007af80
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=d3fbc307e840aa6c2a3aa2282421530a9ad8f7c6
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=f8466f59c58d417a28d64493f53fb4af33491882
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=0985de902c2a8806c1911281ad335d50d28c338a
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=37cea48df44bd624d4a7671159bc754007947dc0
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=ebaadbbb184cae817e3136e17872509ae0050559
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=b3a58e6e33bbd794a7696b8b798cbf22b92a26e8
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=d3db0c3244a0c235eccf9412762b116669bb7845
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=3a87f75cf3bf7a03f6d43d02ed0ad55132d2acf4
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=d997c2be2aa7d3f24e3b0982cea64c080e808ad2
_______________________________________________
svn mailing list
[email protected]
http://mailman.vyatta.com/mailman/listinfo/svn

Reply via email to