netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/52] sfc: Changes for 2.6.28
@ 2008-09-01 11:16 Ben Hutchings
  2008-09-01 11:43 ` [PATCH 01/52] sfc: Replace net_dev->priv with netdev_priv(net_dev) Ben Hutchings
                   ` (51 more replies)
  0 siblings, 52 replies; 55+ messages in thread
From: Ben Hutchings @ 2008-09-01 11:16 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: netdev, linux-net-drivers

Jeff,

Here's a first patch series for sfc in 2.6.28 covering minor fixes and
improvements and the addition of EEPROM access and more self-tests
through ethtool.  We have some more changes in the pipeline for new
hardware support which I will submit later.

Ben.

Ben Hutchings (41):
  sfc: Replace net_dev->priv with netdev_priv(net_dev)
  sfc: Change first parameter type of {set,clear}_bit_le() to unsigned
  sfc: Use separate hardware TX queues to select checksum generation
  sfc: Avoid mangling error codes in efx_test_loopback()
  sfc: Reduce delays in SFE4001 initialisation
  sfc: Remove mistaken hardware workaround
  sfc: XMAC statistics fix-ups
  sfc: Remove inclusion of workarounds.h from efx.c
  sfc: Reduce log level for XGXS lane status
  sfc: Self-test reporting cleanup
  sfc: Speed up loopback self-test
  sfc: Don't leak PCI DMA maps in the TSO code when the queue fills up
  sfc: Use pci_map_single() to map the skb header when doing TSO
  sfc: Reduce the size of struct efx_tx_buffer
  sfc: Use explicit bool for boolean variables, parameters and return
    values
  sfc: Set net_device::vlan_features appropriately
  sfc: Cleaned up struct tso_state fields
  sfc: Removed forced inlining of long functions
  sfc: Export boot configuration in EEPROM through ethtool
  sfc: Move CPU counting for RSS into a separate function,
    efx_wanted_rx_queues()
  sfc: Remove efx_channel::has_interrupt
  sfc: Cleanup RX queue information
  sfc: Remove initialisation of RX_FILTER_CTL_REG.NUM_KER
  sfc: Make efx_for_each_channel_rx_queue() more efficient
  sfc: Remove efx_channel::evqnum field
  sfc: Cleanup RX event processing
  sfc: Implement get_sset_count, replacing get_stats_count and
    self_test_count
  sfc: Make PHY flash mode a device attribute, not a module parameter
  sfc: Enable TSO for 802.1q VLAN devices
  sfc: Remove efx_nic_dummy_op_int() as redundant with
    efx_port_dummy_op_int()
  sfc: Remove remnants of multi-port abstraction for MAC registers
  sfc: Remove some unreachable error paths
  sfc: Cleanup reset code
  sfc: Extend self-tests
  sfc: Remove the STATE_RESETTING flag
  sfc: Add check for memory allocation failure in falcon_probe_nic()
  sfc: Remove workaround for old firmware bug
  sfc: Make queue flushes more reliable
  sfc: Disable interrupts after a fatal interrupt occurs until reset
  sfc: Remove obsolete comment about PCI modes
  sfc: Use CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS where appropriate

Neil Turton (1):
  sfc: Insert read memory barrier after checking MAC statistics flag

Steve Hodgson (10):
  sfc: Remove unused field efx_channel::reset_work
  sfc: Reverse the XOFF/XON pause frame control fifo thresholds
  sfc: Do not call netif_{stop,wake}_queue() before register_netdev
  sfc: Rework the bitfield header so that we can identify fields by bit
    number
  sfc: Rework efx_set_multicast_hash()
  sfc: Fix memory BAR release call on error path
  sfc: Serialise tenxpress_special_reset() with statistics fetches
  sfc: Don't use EFX_OWORD_FIELD on an event (64-bit, quad-word)
  sfc: Don't include net_driver.h from falcon_io.h
  sfc: Stop generating bogus events in tenxpress_check_hw()

 drivers/net/sfc/bitfield.h      |  178 +++++---
 drivers/net/sfc/boards.c        |   12 +-
 drivers/net/sfc/boards.h        |    2 -
 drivers/net/sfc/efx.c           |  489 ++++++++-----------
 drivers/net/sfc/efx.h           |   14 +-
 drivers/net/sfc/enum.h          |    9 +-
 drivers/net/sfc/ethtool.c       |  184 ++++----
 drivers/net/sfc/falcon.c        | 1017 ++++++++++++++++++++++++++-------------
 drivers/net/sfc/falcon.h        |   17 +-
 drivers/net/sfc/falcon_hwdefs.h |   80 ++-
 drivers/net/sfc/falcon_io.h     |    1 -
 drivers/net/sfc/falcon_xmac.c   |  346 +++++---------
 drivers/net/sfc/mac.h           |    4 -
 drivers/net/sfc/mdio_10g.c      |   16 +-
 drivers/net/sfc/mdio_10g.h      |   13 +-
 drivers/net/sfc/net_driver.h    |  144 +++---
 drivers/net/sfc/phy.h           |   10 +-
 drivers/net/sfc/rx.c            |   78 ++--
 drivers/net/sfc/rx.h            |    4 +-
 drivers/net/sfc/selftest.c      |  391 ++++++++-------
 drivers/net/sfc/selftest.h      |   13 +-
 drivers/net/sfc/sfe4001.c       |  248 ++++++----
 drivers/net/sfc/spi.h           |   89 ++--
 drivers/net/sfc/tenxpress.c     |  149 ++-----
 drivers/net/sfc/tx.c            |  385 ++++++++-------
 drivers/net/sfc/tx.h            |    2 +-
 drivers/net/sfc/workarounds.h   |    4 -
 drivers/net/sfc/xfp_phy.c       |   12 +-
 28 files changed, 2086 insertions(+), 1825 deletions(-)

-- 
Ben Hutchings, Senior Software Engineer, Solarflare Communications
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.

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

end of thread, other threads:[~2008-09-13 19:29 UTC | newest]

Thread overview: 55+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-01 11:16 [PATCH 00/52] sfc: Changes for 2.6.28 Ben Hutchings
2008-09-01 11:43 ` [PATCH 01/52] sfc: Replace net_dev->priv with netdev_priv(net_dev) Ben Hutchings
2008-09-01 11:43 ` [PATCH 02/52] sfc: Change first parameter type of {set,clear}_bit_le() to unsigned Ben Hutchings
2008-09-01 11:44 ` [PATCH 03/52] sfc: Remove unused field efx_channel::reset_work Ben Hutchings
2008-09-01 11:44 ` [PATCH 04/52] sfc: Use separate hardware TX queues to select checksum generation Ben Hutchings
2008-09-01 11:45 ` [PATCH 05/52] sfc: Avoid mangling error codes in efx_test_loopback() Ben Hutchings
2008-09-01 11:45 ` [PATCH 06/52] sfc: Reduce delays in SFE4001 initialisation Ben Hutchings
2008-09-01 11:46 ` [PATCH 07/52] sfc: Remove mistaken hardware workaround Ben Hutchings
2008-09-01 11:46 ` [PATCH 08/52] sfc: XMAC statistics fix-ups Ben Hutchings
2008-09-01 11:46 ` [PATCH 09/52] sfc: Remove inclusion of workarounds.h from efx.c Ben Hutchings
2008-09-01 11:46 ` [PATCH 10/52] sfc: Reverse the XOFF/XON pause frame control fifo thresholds Ben Hutchings
2008-09-01 11:46 ` [PATCH 11/52] sfc: Reduce log level for XGXS lane status Ben Hutchings
2008-09-01 11:46 ` [PATCH 12/52] sfc: Self-test reporting cleanup Ben Hutchings
2008-09-01 11:46 ` [PATCH 13/52] sfc: Speed up loopback self-test Ben Hutchings
2008-09-01 11:46 ` [PATCH 14/52] sfc: Don't leak PCI DMA maps in the TSO code when the queue fills up Ben Hutchings
2008-09-01 11:46 ` [PATCH 15/52] sfc: Use pci_map_single() to map the skb header when doing TSO Ben Hutchings
2008-09-01 11:46 ` [PATCH 16/52] sfc: Reduce the size of struct efx_tx_buffer Ben Hutchings
2008-09-01 11:46 ` [PATCH 17/52] sfc: Use explicit bool for boolean variables, parameters and return values Ben Hutchings
2008-09-01 11:46 ` [PATCH 18/52] sfc: Set net_device::vlan_features appropriately Ben Hutchings
2008-09-01 11:47 ` [PATCH 19/52] sfc: Cleaned up struct tso_state fields Ben Hutchings
2008-09-01 11:47 ` [PATCH 20/52] sfc: Removed forced inlining of long functions Ben Hutchings
2008-09-01 11:47 ` [PATCH 21/52] sfc: Export boot configuration in EEPROM through ethtool Ben Hutchings
2008-09-01 11:47 ` [PATCH 22/52] sfc: Move CPU counting for RSS into a separate function, efx_wanted_rx_queues() Ben Hutchings
2008-09-01 11:47 ` [PATCH 23/52] sfc: Remove efx_channel::has_interrupt Ben Hutchings
2008-09-01 11:47 ` [PATCH 24/52] sfc: Cleanup RX queue information Ben Hutchings
2008-09-01 11:47 ` [PATCH 25/52] sfc: Remove initialisation of RX_FILTER_CTL_REG.NUM_KER Ben Hutchings
2008-09-01 11:47 ` [PATCH 26/52] sfc: Make efx_for_each_channel_rx_queue() more efficient Ben Hutchings
2008-09-01 11:48 ` [PATCH 27/52] sfc: Remove efx_channel::evqnum field Ben Hutchings
2008-09-01 11:48 ` [PATCH 28/52] sfc: Cleanup RX event processing Ben Hutchings
2008-09-01 11:48 ` [PATCH 29/52] sfc: Implement get_sset_count, replacing get_stats_count and self_test_count Ben Hutchings
2008-09-01 11:48 ` [PATCH 30/52] sfc: Make PHY flash mode a device attribute, not a module parameter Ben Hutchings
2008-09-01 11:48 ` [PATCH 31/52] sfc: Do not call netif_{stop,wake}_queue() before register_netdev Ben Hutchings
2008-09-01 11:48 ` [PATCH 32/52] sfc: Enable TSO for 802.1q VLAN devices Ben Hutchings
2008-09-01 11:48 ` [PATCH 33/52] sfc: Remove efx_nic_dummy_op_int() as redundant with efx_port_dummy_op_int() Ben Hutchings
2008-09-01 11:48 ` [PATCH 34/52] sfc: Remove remnants of multi-port abstraction for MAC registers Ben Hutchings
2008-09-01 11:48 ` [PATCH 35/52] sfc: Remove some unreachable error paths Ben Hutchings
2008-09-01 11:48 ` [PATCH 36/52] sfc: Cleanup reset code Ben Hutchings
2008-09-01 11:48 ` [PATCH 37/52] sfc: Rework the bitfield header so that we can identify fields by bit number Ben Hutchings
2008-09-01 11:49 ` [PATCH 38/52] sfc: Extend self-tests Ben Hutchings
2008-09-01 11:49 ` [PATCH 39/52] sfc: Remove the STATE_RESETTING flag Ben Hutchings
2008-09-01 11:49 ` [PATCH 40/52] sfc: Rework efx_set_multicast_hash() Ben Hutchings
2008-09-03 13:54   ` Jeff Garzik
2008-09-01 11:49 ` [PATCH 42/52] sfc: Fix memory BAR release call on error path Ben Hutchings
2008-09-01 11:49 ` [PATCH 43/52] sfc: Remove workaround for old firmware bug Ben Hutchings
2008-09-01 11:49 ` [PATCH 44/52] sfc: Serialise tenxpress_special_reset() with statistics fetches Ben Hutchings
2008-09-01 11:49 ` [PATCH 45/52] sfc: Don't use EFX_OWORD_FIELD on an event (64-bit, quad-word) Ben Hutchings
2008-09-01 11:49 ` [PATCH 46/52] sfc: Make queue flushes more reliable Ben Hutchings
2008-09-01 11:49 ` [PATCH 47/52] sfc: Don't include net_driver.h from falcon_io.h Ben Hutchings
2008-09-01 11:50 ` [PATCH 48/52] sfc: Stop generating bogus events in tenxpress_check_hw() Ben Hutchings
2008-09-01 11:50 ` [PATCH 49/52] sfc: Insert read memory barrier after checking MAC statistics flag Ben Hutchings
2008-09-01 11:50 ` [PATCH 50/52] sfc: Disable interrupts after a fatal interrupt occurs until reset Ben Hutchings
2008-09-01 11:50 ` [PATCH 51/52] sfc: Remove obsolete comment about PCI modes Ben Hutchings
2008-09-01 11:50 ` [PATCH 52/52] sfc: Use CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS where appropriate Ben Hutchings
2008-09-03 14:07 ` [PATCH 41/52] sfc: Add check for memory allocation failure in falcon_probe_nic() Ben Hutchings
2008-09-13 19:29   ` Jeff Garzik

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).