netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 00/15] ethtool: consolidate irq coalescing - part 4
@ 2020-03-11 22:32 Jakub Kicinski
  2020-03-11 22:32 ` [PATCH net-next 01/15] net: be2net: reject unsupported coalescing params Jakub Kicinski
                   ` (15 more replies)
  0 siblings, 16 replies; 20+ messages in thread
From: Jakub Kicinski @ 2020-03-11 22:32 UTC (permalink / raw)
  To: davem
  Cc: netdev, mkubecek, sathya.perla, ajit.khaparde,
	sriharsha.basavapatna, somnath.kotur, madalin.bucur, fugang.duan,
	claudiu.manoil, yisen.zhuang, salil.mehta, jeffrey.t.kirsher,
	jacob.e.keller, alexander.h.duyck, Jakub Kicinski

Hi!

Convert more drivers following the groundwork laid in a recent
patch set [1] and continued in [2], [3]. The aim of the effort
is to consolidate irq coalescing parameter validation in the core.

This set converts 15 drivers in drivers/net/ethernet - remaining
Intel drivers, Freescale/NXP, and others.
2 more conversion sets to come.

[1] https://lore.kernel.org/netdev/20200305051542.991898-1-kuba@kernel.org/
[2] https://lore.kernel.org/netdev/20200306010602.1620354-1-kuba@kernel.org/
[3] https://lore.kernel.org/netdev/20200310021512.1861626-1-kuba@kernel.org/

Jakub Kicinski (15):
  net: be2net: reject unsupported coalescing params
  net: dpaa: reject unsupported coalescing params
  net: fec: reject unsupported coalescing params
  net: gianfar: reject unsupported coalescing params
  net: hns: reject unsupported coalescing params
  net: hns3: reject unsupported coalescing params
  net: e1000: reject unsupported coalescing params
  net: fm10k: reject unsupported coalescing params
  net: i40e: reject unsupported coalescing params
  net: iavf: reject unsupported coalescing params
  net: igb: let core reject the unsupported coalescing parameters
  net: igbvf: reject unsupported coalescing params
  net: igc: let core reject the unsupported coalescing parameters
  net: ixgbe: reject unsupported coalescing params
  net: ixgbevf: reject unsupported coalescing params

 .../net/ethernet/emulex/benet/be_ethtool.c    |  3 +++
 .../ethernet/freescale/dpaa/dpaa_ethtool.c    |  6 ++---
 drivers/net/ethernet/freescale/fec_main.c     |  2 ++
 .../net/ethernet/freescale/gianfar_ethtool.c  |  2 ++
 .../net/ethernet/hisilicon/hns/hns_ethtool.c  |  5 +++++
 .../ethernet/hisilicon/hns3/hns3_ethtool.c    |  7 ++++++
 .../net/ethernet/intel/e1000/e1000_ethtool.c  |  1 +
 .../net/ethernet/intel/fm10k/fm10k_ethtool.c  |  2 ++
 .../net/ethernet/intel/i40e/i40e_ethtool.c    |  5 +++++
 .../net/ethernet/intel/iavf/iavf_ethtool.c    |  4 ++++
 drivers/net/ethernet/intel/igb/igb_ethtool.c  | 22 +------------------
 drivers/net/ethernet/intel/igbvf/ethtool.c    |  1 +
 drivers/net/ethernet/intel/igc/igc_ethtool.c  | 22 +------------------
 .../net/ethernet/intel/ixgbe/ixgbe_ethtool.c  |  1 +
 drivers/net/ethernet/intel/ixgbevf/ethtool.c  |  1 +
 include/linux/ethtool.h                       |  8 +++++++
 16 files changed, 46 insertions(+), 46 deletions(-)

-- 
2.24.1


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

end of thread, other threads:[~2020-03-12 18:33 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-11 22:32 [PATCH net-next 00/15] ethtool: consolidate irq coalescing - part 4 Jakub Kicinski
2020-03-11 22:32 ` [PATCH net-next 01/15] net: be2net: reject unsupported coalescing params Jakub Kicinski
2020-03-11 22:32 ` [PATCH net-next 02/15] net: dpaa: " Jakub Kicinski
2020-03-12  7:35   ` Madalin Bucur (OSS)
2020-03-11 22:32 ` [PATCH net-next 03/15] net: fec: " Jakub Kicinski
2020-03-12  1:24   ` [EXT] " Andy Duan
2020-03-11 22:32 ` [PATCH net-next 04/15] net: gianfar: " Jakub Kicinski
2020-03-11 22:32 ` [PATCH net-next 05/15] net: hns: " Jakub Kicinski
2020-03-11 22:32 ` [PATCH net-next 06/15] net: hns3: " Jakub Kicinski
2020-03-11 22:32 ` [PATCH net-next 07/15] net: e1000: " Jakub Kicinski
2020-03-11 22:32 ` [PATCH net-next 08/15] net: fm10k: " Jakub Kicinski
2020-03-11 22:41   ` Jacob Keller
2020-03-11 22:32 ` [PATCH net-next 09/15] net: i40e: " Jakub Kicinski
2020-03-11 22:32 ` [PATCH net-next 10/15] net: iavf: " Jakub Kicinski
2020-03-11 22:32 ` [PATCH net-next 11/15] net: igb: let core reject the unsupported coalescing parameters Jakub Kicinski
2020-03-11 22:32 ` [PATCH net-next 12/15] net: igbvf: reject unsupported coalescing params Jakub Kicinski
2020-03-11 22:33 ` [PATCH net-next 13/15] net: igc: let core reject the unsupported coalescing parameters Jakub Kicinski
2020-03-11 22:33 ` [PATCH net-next 14/15] net: ixgbe: reject unsupported coalescing params Jakub Kicinski
2020-03-11 22:33 ` [PATCH net-next 15/15] net: ixgbevf: " Jakub Kicinski
2020-03-12 18:33 ` [PATCH net-next 00/15] ethtool: consolidate irq coalescing - part 4 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).