netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 00/12] be2net: patch set
@ 2014-09-19 10:16 Sathya Perla
  2014-09-19 10:16 ` [PATCH net-next 01/12] be2net: fix a sparse warning in be_cmd_modify_eqd() Sathya Perla
                   ` (12 more replies)
  0 siblings, 13 replies; 15+ messages in thread
From: Sathya Perla @ 2014-09-19 10:16 UTC (permalink / raw)
  To: netdev

Patches 1 and 2 fix sparse warnings (static declaration needed and endian
declaration needed) introduced by the earlier patch set.

Patches 3 and 4 add 20G/40G speed reporting via ethtool for the Skyhawk-R
chip.

Patches 5 to 12 fix various style issues and checkpatch warnings in the
driver such as:
	- removing unnecessary return statements in void routines
	- adding needed blank lines after a declaration block
	- deleting multiple blank lines
	- inserting a blank line after a function/struct definition
	- removing space after typecast
	- fixing multiple assignments on a single line
	- fixing alignment on a line wrap

Please consider applying this patch set to the net-next tree. Thanks!

Kalesh AP (10):
  be2net: fix a sparse warning in be_cmd_modify_eqd()
  be2net: add speed reporting for 40G/KR interface
  be2net: remove return statements for void functions
  be2net: add blank line after declarations
  be2net: remove multiple blank lines
  be2net: insert a blank line after function/struct//enum definitions
  be2net: remove unnecessary blank lines after an open brace
  be2net: remove space after typecasts
  be2net: remove multiple assignments on a single line
  be2net: fix alignment on line wrap

Suresh Reddy (1):
  be2net: fix sparse warnings in be_cmd_req_port_type{}

Vasundhara Volam (1):
  be2net: add speed reporting for 20G-KR interface

^ permalink raw reply	[flat|nested] 15+ messages in thread
* [PATCH net-next 00/12] be2net: patch set
@ 2014-09-01  6:24 Sathya Perla
  0 siblings, 0 replies; 15+ messages in thread
From: Sathya Perla @ 2014-09-01  6:24 UTC (permalink / raw)
  To: netdev

Patch 1 adds a few new log messages to help debugging in failure cases.

Patch 2 uses new macros for parsing RX/TX completions and TX wrbs to
help shorten the lines.

Patch 3 adds a description for the RX counter rx_input_fifo_overflow_drop.

Patch 4 adds TX completion error statistics reporting via ethtool.

Patch 5 adds a dma_mapping_error counter and its reporting via ethtool.

Patch 6 fixes up log messages in the Lancer FW download path.

Patch 7 replaces gotos with direct return statements.

Patch 8 cleans up be_change_mtu() code by using a new macro BE_MAX_MTU

Patch 9 makes be_cmd_get_regs() routine to return an integer status
similar to other FW cmd routines in be_cmds.c

Patch 10 gets rid of TX budget as enforcing a budget on TX completion
processing in NAPI is neither suggested nor it provides a performance benefit.

Patch 11 defines and uses a new macro for_all_tx_queues_on_eq() similar
to the RX processing code.

Patch 12 queries max_tx_qs from the FW for BE3 super-nic profiles. 
For those profiles, the driver cannot assume a constant BE3_MAX_TX_QS value,
as the value may change for each function.

Please consider applying this patch set to the net-next tree. Thanks!

Kalesh AP (4):
  be2net: Add TX completion error statistics in ethtool
  be2net: fix log messages in lancer FW download path
  be2net: remove unncessary gotos
  be2net: define BE_MAX_MTU

Sathya Perla (5):
  be2net: add a few log messages
  be2net: shorten AMAP_GET/SET_BITS() macro calls
  be2net: add a description for counter rx_input_fifo_overflow_drop
  be2net: get rid of TX budget
  be2net: define macro for_all_tx_queues_on_eq()

Suresh Reddy (1):
  be2net: query max_tx_qs for BE3 super-nic profile from FW

Vasundhara Volam (2):
  be2net: Add a dma_mapping_error counter in ethtool
  be2net: make be_cmd_get_regs() return a status

 drivers/net/ethernet/emulex/benet/be.h         |   28 +++-
 drivers/net/ethernet/emulex/benet/be_cmds.c    |   14 +-
 drivers/net/ethernet/emulex/benet/be_cmds.h    |    2 +-
 drivers/net/ethernet/emulex/benet/be_ethtool.c |   35 +++
 drivers/net/ethernet/emulex/benet/be_hw.h      |   12 +
 drivers/net/ethernet/emulex/benet/be_main.c    |  282 +++++++++++++-----------
 6 files changed, 232 insertions(+), 141 deletions(-)

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

end of thread, other threads:[~2014-09-22 19:01 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-19 10:16 [PATCH net-next 00/12] be2net: patch set Sathya Perla
2014-09-19 10:16 ` [PATCH net-next 01/12] be2net: fix a sparse warning in be_cmd_modify_eqd() Sathya Perla
2014-09-19 10:16 ` [PATCH net-next 02/12] be2net: fix sparse warnings in be_cmd_req_port_type{} Sathya Perla
2014-09-19 10:16 ` [PATCH net-next 03/12] be2net: add speed reporting for 40G/KR interface Sathya Perla
2014-09-19 10:16 ` [PATCH net-next 04/12] be2net: add speed reporting for 20G-KR interface Sathya Perla
2014-09-19 10:16 ` [PATCH net-next 05/12] be2net: remove return statements for void functions Sathya Perla
2014-09-19 10:16 ` [PATCH net-next 06/12] be2net: add blank line after declarations Sathya Perla
2014-09-19 10:16 ` [PATCH net-next 07/12] be2net: remove multiple blank lines Sathya Perla
2014-09-19 10:16 ` [PATCH net-next 08/12] be2net: insert a blank line after function/struct//enum definitions Sathya Perla
2014-09-19 10:16 ` [PATCH net-next 09/12] be2net: remove unnecessary blank lines after an open brace Sathya Perla
2014-09-19 10:17 ` [PATCH net-next 10/12] be2net: remove space after typecasts Sathya Perla
2014-09-19 10:17 ` [PATCH net-next 11/12] be2net: remove multiple assignments on a single line Sathya Perla
2014-09-19 10:17 ` [PATCH net-next 12/12] be2net: fix alignment on line wrap Sathya Perla
2014-09-22 19:01 ` [PATCH net-next 00/12] be2net: patch set David Miller
  -- strict thread matches above, loose matches on Subject: below --
2014-09-01  6:24 Sathya Perla

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