All of lore.kernel.org
 help / color / mirror / Atom feed
* [NET-NEXT PATCH 00/25] ixgb: update to latest
@ 2008-07-08 22:51 Jeff Kirsher
  2008-07-08 22:51 ` [NET-NEXT PATCH 01/25] ixgb: maybe stop tx port missed a piece Jeff Kirsher
                   ` (24 more replies)
  0 siblings, 25 replies; 27+ messages in thread
From: Jeff Kirsher @ 2008-07-08 22:51 UTC (permalink / raw)
  To: jeff; +Cc: netdev, davem

The following series implements a set of cleanups and bug fixes for the ixgb
driver. 

---
Summary:
Jesse Brandeburg <jesse.brandeburg@intel.com>:
     ixgb: maybe stop tx port missed a piece
     ixgb: repeat 32 bit ioremap cleanup
     ixgb: fix bug in descriptor ring due to prefetch corruption
     ixgb: leave room for extra hardware memory usage
     ixgb: check down state before enable irq
     ixgb: don't allow too small MTU
     ixgb: move time stamp set before setting dma pointer
     ixgb: fix race on rx_buffer_len in mtu change
     ixgb: fix unload race with timers
     ixgb: remove lltx support and update tx routine
     ixgb: update readme text
     ixgb: add copybreak parameter
     ixgb: clean up un-necessary declarations
     ixgb: format all if( to be if (
     ixgb: cleanup space after while
     ixgb: whitespace fixups
     ixgb: fix spelling errors
     ixgb: trivial fix space after for
     ixgb: cleanup checkpatch suggestions that are relevant
     ixgb: rx cleanup performance improvements
     ixgb: clean up assignments inside if statements
     ixgb: audit use of dev_kfree_skb_any
     ixgb: cleanup header
     ixgb: make NAPI the only option and the default
     ixgb: update copyright dates and versions

---
 Documentation/networking/ixgb.txt |  419 +++++++++++++++++++++++--------
 drivers/net/Kconfig               |   14 -
 drivers/net/ixgb/Makefile         |    2 
 drivers/net/ixgb/ixgb.h           |   23 -
 drivers/net/ixgb/ixgb_ee.c        |   28 +-
 drivers/net/ixgb/ixgb_ee.h        |   12 
 drivers/net/ixgb/ixgb_ethtool.c   |  120 ++++----
 drivers/net/ixgb/ixgb_hw.c        |   40 +-
 drivers/net/ixgb/ixgb_hw.h        |    2 
 drivers/net/ixgb/ixgb_ids.h       |   10 
 drivers/net/ixgb/ixgb_main.c      |  512 ++++++++++++++++----------------------
 drivers/net/ixgb/ixgb_osdep.h     |    4 
 drivers/net/ixgb/ixgb_param.c     |   46 +--

-- 
Cheers,
Jeff

^ permalink raw reply	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2008-07-11  5:22 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-08 22:51 [NET-NEXT PATCH 00/25] ixgb: update to latest Jeff Kirsher
2008-07-08 22:51 ` [NET-NEXT PATCH 01/25] ixgb: maybe stop tx port missed a piece Jeff Kirsher
2008-07-11  5:21   ` Jeff Garzik
2008-07-08 22:51 ` [NET-NEXT PATCH 02/25] ixgb: repeat 32 bit ioremap cleanup Jeff Kirsher
2008-07-08 22:51 ` [NET-NEXT PATCH 03/25] ixgb: fix bug in descriptor ring due to prefetch corruption Jeff Kirsher
2008-07-08 22:51 ` [NET-NEXT PATCH 04/25] ixgb: leave room for extra hardware memory usage Jeff Kirsher
2008-07-08 22:51 ` [NET-NEXT PATCH 05/25] ixgb: check down state before enable irq Jeff Kirsher
2008-07-08 22:51 ` [NET-NEXT PATCH 06/25] ixgb: don't allow too small MTU Jeff Kirsher
2008-07-08 22:51 ` [NET-NEXT PATCH 07/25] ixgb: move time stamp set before setting dma pointer Jeff Kirsher
2008-07-08 22:51 ` [NET-NEXT PATCH 08/25] ixgb: fix race on rx_buffer_len in mtu change Jeff Kirsher
2008-07-08 22:51 ` [NET-NEXT PATCH 09/25] ixgb: fix unload race with timers Jeff Kirsher
2008-07-08 22:51 ` [NET-NEXT PATCH 10/25] ixgb: remove lltx support and update tx routine Jeff Kirsher
2008-07-08 22:51 ` [NET-NEXT PATCH 11/25] ixgb: update readme text Jeff Kirsher
2008-07-08 22:52 ` [NET-NEXT PATCH 12/25] ixgb: add copybreak parameter Jeff Kirsher
2008-07-08 22:52 ` [NET-NEXT PATCH 13/25] ixgb: clean up un-necessary declarations Jeff Kirsher
2008-07-08 22:52 ` [NET-NEXT PATCH 14/25] ixgb: format all if( to be if ( Jeff Kirsher
2008-07-08 22:52 ` [NET-NEXT PATCH 15/25] ixgb: cleanup space after while Jeff Kirsher
2008-07-08 22:52 ` [NET-NEXT PATCH 16/25] ixgb: whitespace fixups Jeff Kirsher
2008-07-08 22:52 ` [NET-NEXT PATCH 17/25] ixgb: fix spelling errors Jeff Kirsher
2008-07-08 22:52 ` [NET-NEXT PATCH 18/25] ixgb: trivial fix space after for Jeff Kirsher
2008-07-08 22:52 ` [NET-NEXT PATCH 19/25] ixgb: cleanup checkpatch suggestions that are relevant Jeff Kirsher
2008-07-08 22:52 ` [NET-NEXT PATCH 20/25] ixgb: rx cleanup performance improvements Jeff Kirsher
2008-07-08 22:52 ` [NET-NEXT PATCH 21/25] ixgb: clean up assignments inside if statements Jeff Kirsher
2008-07-08 22:52 ` [NET-NEXT PATCH 22/25] ixgb: audit use of dev_kfree_skb_any Jeff Kirsher
2008-07-08 22:52 ` [NET-NEXT PATCH 23/25] ixgb: cleanup header Jeff Kirsher
2008-07-08 22:53 ` [NET-NEXT PATCH 24/25] ixgb: make NAPI the only option and the default Jeff Kirsher
2008-07-08 22:53 ` [NET-NEXT PATCH 25/25] ixgb: update copyright dates and versions Jeff Kirsher

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.