netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Pull request: sfc-next 2013-08-27
@ 2013-08-27 20:37 Ben Hutchings
  2013-08-27 20:38 ` [PATCH net-next 01/16] sfc: Get rid of per-NIC-type phys_addr_channels and mem_map_size Ben Hutchings
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: Ben Hutchings @ 2013-08-27 20:37 UTC (permalink / raw)
  To: David Miller; +Cc: netdev, linux-net-drivers

The following changes since commit f76fe120d81c96fa2a17ae41f0647c963dbb43cd:

  sfc: Update and improve kernel-doc for efx_mcdi_state & efx_mcdi_iface (2013-08-21 20:20:41 +0100)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/bwh/sfc-next.git for-davem

for you to fetch changes up to b766630b351c68c0383831dba9b81a905e5e84c6:

  sfc: Eliminate struct efx_mtd (2013-08-22 19:26:04 +0100)

More refactoring and cleanup, particularly around filter management.

Ben.

----------------------------------------------------------------
Ben Hutchings (16):
      sfc: Get rid of per-NIC-type phys_addr_channels and mem_map_size
      sfc: EFX_WORKAROUND_ALWAYS is really specific to Falcon-architecture
      sfc: Do not assume efx_nic_type::ev_fini is idempotent
      sfc: Remove unused filter_flags variables and efx_farch_filter_id_flags()
      sfc: Rename Falcon-arch filter implementation types and functions
      sfc: Name the RX drop queue ID
      sfc: Extend and abstract efx_filter_spec to cover Huntington/EF10
      sfc: Split Falcon-arch-specific and common filter state
      sfc: Refactor Falcon-arch search limit reset
      sfc: Make most filter operations NIC-type-specific
      sfc: Refactor Falcon-arch filter removal
      sfc: Add flag for stack-owned RX MAC filters
      sfc: Define and use MCDI_POPULATE_DWORD_{1,2,3,4,5,6,7}
      sfc: Cleanup Falcon-arch simple MAC filter state
      sfc: Rename SPI stuff to show that it is Falcon-specific
      sfc: Eliminate struct efx_mtd

 drivers/net/ethernet/sfc/Makefile      |    1 -
 drivers/net/ethernet/sfc/efx.c         |   96 +--
 drivers/net/ethernet/sfc/efx.h         |  107 ++-
 drivers/net/ethernet/sfc/ethtool.c     |  215 +++---
 drivers/net/ethernet/sfc/falcon.c      |  131 ++--
 drivers/net/ethernet/sfc/farch.c       | 1171 ++++++++++++++++++++++++++++-
 drivers/net/ethernet/sfc/filter.c      | 1274 --------------------------------
 drivers/net/ethernet/sfc/filter.h      |  234 ++++--
 drivers/net/ethernet/sfc/mcdi.h        |   54 ++
 drivers/net/ethernet/sfc/mcdi_port.c   |   29 +-
 drivers/net/ethernet/sfc/mtd.c         |  307 ++++----
 drivers/net/ethernet/sfc/net_driver.h  |   79 +-
 drivers/net/ethernet/sfc/nic.h         |   33 +-
 drivers/net/ethernet/sfc/rx.c          |   94 +++
 drivers/net/ethernet/sfc/siena.c       |   32 +-
 drivers/net/ethernet/sfc/spi.h         |   18 +-
 drivers/net/ethernet/sfc/workarounds.h |   10 -
 17 files changed, 2118 insertions(+), 1767 deletions(-)
 delete mode 100644 drivers/net/ethernet/sfc/filter.c

-- 
Ben Hutchings, Staff Engineer, Solarflare
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] 18+ messages in thread

end of thread, other threads:[~2013-08-28  2:02 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-27 20:37 Pull request: sfc-next 2013-08-27 Ben Hutchings
2013-08-27 20:38 ` [PATCH net-next 01/16] sfc: Get rid of per-NIC-type phys_addr_channels and mem_map_size Ben Hutchings
2013-08-27 20:38 ` [PATCH net-next 02/16] sfc: EFX_WORKAROUND_ALWAYS is really specific to Falcon-architecture Ben Hutchings
2013-08-27 20:39 ` [PATCH net-next 03/16] sfc: Do not assume efx_nic_type::ev_fini is idempotent Ben Hutchings
2013-08-27 20:39 ` [PATCH net-next 04/16] sfc: Remove unused filter_flags variables and efx_farch_filter_id_flags() Ben Hutchings
2013-08-27 20:43 ` [PATCH net-next 05/16] sfc: Rename Falcon-arch filter implementation types and functions Ben Hutchings
2013-08-27 20:43 ` [PATCH net-next 06/16] sfc: Name the RX drop queue ID Ben Hutchings
2013-08-27 20:45 ` [PATCH net-next 07/16] sfc: Extend and abstract efx_filter_spec to cover Huntington/EF10 Ben Hutchings
2013-08-27 20:45 ` [PATCH net-next 08/16] sfc: Split Falcon-arch-specific and common filter state Ben Hutchings
2013-08-27 20:46 ` [PATCH net-next 09/16] sfc: Refactor Falcon-arch search limit reset Ben Hutchings
2013-08-27 20:48 ` [PATCH net-next 10/16] sfc: Make most filter operations NIC-type-specific Ben Hutchings
2013-08-27 20:48 ` [PATCH net-next 11/16] sfc: Refactor Falcon-arch filter removal Ben Hutchings
2013-08-27 20:49 ` [PATCH net-next 12/16] sfc: Add flag for stack-owned RX MAC filters Ben Hutchings
2013-08-27 20:49 ` [PATCH net-next 13/16] sfc: Define and use MCDI_POPULATE_DWORD_{1,2,3,4,5,6,7} Ben Hutchings
2013-08-27 20:50 ` [PATCH net-next 14/16] sfc: Cleanup Falcon-arch simple MAC filter state Ben Hutchings
2013-08-27 20:50 ` [PATCH net-next 15/16] sfc: Rename SPI stuff to show that it is Falcon-specific Ben Hutchings
2013-08-27 20:51 ` [PATCH net-next 16/16] sfc: Eliminate struct efx_mtd Ben Hutchings
2013-08-28  2:02 ` Pull request: sfc-next 2013-08-27 David Miller

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